Card
data class Card @JvmOverloads constructor(var number: String, val expirationMonth: String, val expirationYear: String, var securityCode: String, var cardholderName: String? = null, var billingAddress: Address? = null) : Parcelable
Represents raw credit or debit card data provided by the customer.
Constructors
Properties
Link copied to clipboard
Optional. The billing address
Link copied to clipboard
Optional. The card holder's name as it appears on the card
Link copied to clipboard
The 2-digit card expiration month in MM format
Link copied to clipboard
The 4-digit card expiration year in YYYY format
Link copied to clipboard
The three- or four-digit security code of the card. Also known as the CVV, CVC, CVN, CVE, or CID.