@sumup/sdk
    Preparing search index...

    Type Alias Card

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

    type Card = {
        cvv: string;
        expiry_month:
            | "01"
            | "02"
            | "03"
            | "04"
            | "05"
            | "06"
            | "07"
            | "08"
            | "09"
            | "10"
            | "11"
            | "12";
        expiry_year: string;
        last_4_digits: string;
        name: string;
        number: string;
        type: | "AMEX"
        | "CUP"
        | "DINERS"
        | "DISCOVER"
        | "ELO"
        | "ELV"
        | "HIPERCARD"
        | "JCB"
        | "MAESTRO"
        | "MASTERCARD"
        | "VISA"
        | "VISA_ELECTRON"
        | "VISA_VPAY"
        | "UNKNOWN";
        zip_code?: string;
    }
    Index

    Properties

    cvv: string

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

    expiry_month:
        | "01"
        | "02"
        | "03"
        | "04"
        | "05"
        | "06"
        | "07"
        | "08"
        | "09"
        | "10"
        | "11"
        | "12"

    Month from the expiration time of the payment card. Accepted format is MM.

    expiry_year: string

    Year from the expiration time of the payment card. Accepted formats are YY and YYYY.

    last_4_digits: string

    Last 4 digits of the payment card number.

    name: string

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

    number: string

    Number of the payment card (without spaces).

    type:
        | "AMEX"
        | "CUP"
        | "DINERS"
        | "DISCOVER"
        | "ELO"
        | "ELV"
        | "HIPERCARD"
        | "JCB"
        | "MAESTRO"
        | "MASTERCARD"
        | "VISA"
        | "VISA_ELECTRON"
        | "VISA_VPAY"
        | "UNKNOWN"

    Issuing card network of the payment card.

    zip_code?: string

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