CustomerCard
public struct CustomerCard : Codable
Customer Card used when you want to get the list of cards.
-
Customer Id
Declaration
Swift
public let customerId: String
-
Expiry month
Declaration
Swift
public let expiryMonth: String
-
Expiry year
Declaration
Swift
public let expiryYear: String
-
Billing address
Declaration
Swift
public let billingDetails: Address
-
Card Id
Declaration
Swift
public let id: String
-
Last 4 digits of the card number
Declaration
Swift
public let last4: String
-
Bin of the card number (first 6 digits)
Declaration
Swift
public let bin: String
-
Payment method used (e.g. Visa)
Declaration
Swift
public let paymentMethod: String
-
Card fingerprint
Declaration
Swift
public let fingerprint: String
-
Name of the card owner
Declaration
Swift
public let name: String?
-
True if it is the default card
Declaration
Swift
public let defaultCard: Bool