The expiration date of the card used for payment. If the payment method is not card, the expiration date is null.

ExpiryDate

interface ExpiryDate {
    month?: string;
    year?: string;
}

Properties

Properties

month?: string

The month the card expires expressed as a number from 1 to 12.

ExpiryDate

year?: string

Year

ExpiryDate