CvvOnlyCard

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

maskedCardNumber

The masked card number, e.g. "489537xxxxxx6287"

expiryDate

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?)
constructor(maskedCardNumber: String, expiryDate: CardExpiryDate, type: PaymentMethodType)

Use this constructor to display a CVV input screen and tokenize the entered CVV.

Properties

Link copied to clipboard
val cvv: String?
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard