SQIPCard
@interface SQIPCard : NSObject <NSCopying>
Represents a payment card.
-
The card brand (for example, Visa).
Declaration
Objective-C
@property (nonatomic, readonly) int brand;
-
The last 4 digits of the card number.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nonnull) NSString *lastFourDigits;
-
The expiration month of the card. Ranges between 1 and 12.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger expirationMonth;
-
The 4-digit expiration year of the card.
Declaration
Objective-C
@property (nonatomic, readonly) NSUInteger expirationYear;
-
The billing postal code associated with the card, if available.
Declaration
Objective-C
@property (nonatomic, strong, readonly, nullable) NSString *postalCode;
-
The type of card (for example, Credit or Debit) Note: This property is experimental and will always return
unknown
Declaration
Objective-C
@property (nonatomic, readonly) int type;
-
The prepaid type of the credit card (for example, a Prepaid Gift Card) Note: This property is experimental and will always return
unknown
Declaration
Objective-C
@property (nonatomic, readonly) int prepaidType;