PaymentCardObject: {
    cardholder: string;
    city?: string;
    country_code?: string;
    cvv: number;
    exp_month: number;
    exp_year: number;
    number: string;
    postal_code: string;
    state_code?: string;
    store_token?: boolean;
    street_1?: string;
    street_2?: string;
    token_nickname: string;
}

Payment credit card detail object.

Type declaration

  • cardholder: string

    Cardholder name as it appears on card

  • Optional city?: string

    Card billing address city name

  • Optional country_code?: string

    Card billing address ISO-3166-2 character country code

  • cvv: number

    Credit card security code (3 or 4 digits)

  • exp_month: number

    Credit card expiration month (1-12)

  • exp_year: number

    Credit card expiration year (4 digits)

  • number: string

    Credit card number

  • postal_code: string

    Card billing postal code

  • Optional state_code?: string

    Card billing address ISO-3166-2 character state/province code

  • Optional store_token?: boolean

    Set to true to save credit card in secure storage and return a card token value. Default is false. NOTE If set to true a customer.email value is required

  • Optional street_1?: string

    Card billing street 1 address

  • Optional street_2?: string

    Card billing street 2 address

  • token_nickname: string

    Stored card nickname. Required if store_token is set to true

Generated using TypeDoc