Cvv Only Card
data class CvvOnlyCard(val maskedCardNumber: String, val expiryDate: CardExpiryDate, val type: PaymentMethodType, val cvv: String?)
This class represents a previously tokenized card used in the CVV-only tokenization/verification flow for PCI Proxy.
Use this constructor to tokenize a provided CVV value.
Parameters
masked Card Number
The masked card number, e.g. "489537xxxxxx6287"
expiry Date
The card's expiry date, e.g. "12/22"
type
The card's PaymentMethodType, e.g. PaymentMethodType.VISA
cvv
The card's CVV to be tokenized
Constructors
Link copied to clipboard
constructor(maskedCardNumber: String, expiryDate: CardExpiryDate, type: PaymentMethodType, cvv: String?)
Use this constructor to display a CVV input screen and tokenize the entered CVV.