The details of a payment method.

PaymentMethodDetails

interface PaymentMethodDetails {
    accountHolderName?: string;
    assignmentType?: "DEFAULT_DEPOSIT_METHOD";
    countryCode?: string;
    expiryDate?: ExpiryDate;
    paymentMethodId?: string;
    paymentMethodType?: PaymentMethodType;
    tail?: string;
}

Properties

accountHolderName?: string

The name of the account holder who is registered for the payment method.

PaymentMethodDetails

assignmentType?: "DEFAULT_DEPOSIT_METHOD"

PaymentMethodDetails

countryCode?: string

The two-letter country code in ISO 3166-1 alpha-2 format. For payment methods in the card category, the code is for the country where the card was issued. For payment methods in the bank account category, the code is for the country where the account is located.

PaymentMethodDetails

expiryDate?: ExpiryDate

PaymentMethodDetails

paymentMethodId?: string

The payment method identifier.

PaymentMethodDetails

paymentMethodType?: PaymentMethodType

PaymentMethodDetails

tail?: string

The last three or four digits of the payment method.

PaymentMethodDetails