@sumup/sdk
    Preparing search index...

    Type Alias Card

    Card

    Required when payment type is card. Details of the payment card.

    type Card = {
        cvv: string;
        expiry_month: string;
        expiry_year: string;
        name: string;
        number: string;
        type: CardType;
        zip_code?: string;
    }
    Index
    cvv: string

    Three or four-digit card verification value (security code) of the payment card.

    expiry_month: string

    Two-digit expiration month, from 01 through 12.

    expiry_year: string

    Two- or four-digit expiration year in YY or YYYY format.

    name: string

    Name of the cardholder as it appears on the payment card.

    number: string

    Number of the payment card (without spaces).

    type: CardType
    zip_code?: string

    Required five-digit ZIP code. Applicable only to merchant users in the USA.