CardBrand
public enum CardBrand : String, Codable, Sendable, CaseIterable
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 card brand case.
Declaration
Swift
case jcb = "JCB" -
UnionPay card brand case.
Declaration
Swift
case unionpay = "UNIONPAY" -
Pulse card brand case.
Declaration
Swift
case pulse = "PULSE" -
Star card brand case.
Declaration
Swift
case star = "STAR" -
NYCE card brand case.
Declaration
Swift
case nyce = "NYCE" -
ACCEL card brand case.
Declaration
Swift
case accel = "ACCEL" -
CU24 card brand case.
Declaration
Swift
case cu24 = "CU24" -
CCPAY card brand case.
Declaration
Swift
case ccpay = "CCPAY" -
Unknown card brand case.
Declaration
Swift
case unknown = "UNKNOWN" -
All card brands list.
Declaration
Swift
public static let allBrands: [`Self`]
View on GitHub