SCPCardBrand
Objective-C
enum SCPCardBrand : NSInteger {}
Swift
enum CardBrand : Int, @unchecked Sendable
The various card brands for a card.
-
Visa card
Declaration
Objective-C
SCPCardBrandVisa
Swift
case visa = 0
-
American Express card
Declaration
Objective-C
SCPCardBrandAmex
Swift
case amex = 1
-
MasterCard card
Declaration
Objective-C
SCPCardBrandMasterCard
Swift
case masterCard = 2
-
Discover card
Declaration
Objective-C
SCPCardBrandDiscover
Swift
case discover = 3
-
JCB card
Declaration
Objective-C
SCPCardBrandJCB
Swift
case JCB = 4
-
Diners Club card
Declaration
Objective-C
SCPCardBrandDinersClub
Swift
case dinersClub = 5
-
Interac card
Declaration
Objective-C
SCPCardBrandInterac
Swift
case interac = 6
-
Union Pay card
Declaration
Objective-C
SCPCardBrandUnionPay
Swift
case unionPay = 7
-
Eftpos Australia card
Declaration
Objective-C
SCPCardBrandEftposAu
Swift
case eftposAu = 8
-
An unknown card brand
Declaration
Objective-C
SCPCardBrandUnknown
Swift
case unknown = 9