CardBrand

public enum CardBrand : String, Codable

Card brands,

  • Visa card brand case.

    Declaration

    Swift

    case visa = "VISA"
  • MasterCard card brand case.

    Declaration

    Swift

    case mastercard = "MASTERCARD"
  • Amex card brand case.

    Declaration

    Swift

    case amex = "AMEX"
  • Diners card brand case.

    Declaration

    Swift

    case diners = "DINERS"
  • Discover card brand case.

    Declaration

    Swift

    case discover = "DISCOVER"
  • jcb

    JCB card brand case.

    Declaration

    Swift

    case jcb = "JCB"
  • UnionPay card brand case.

    Declaration

    Swift

    case unionpay = "UNIONPAY"
  • Unknown card brand case.

    Declaration

    Swift

    case unknown = "UNKNOWN"
  • All card brands list.

    Declaration

    Swift

    public static let allBrands: [`Self`]