export PaymentMethod

interface PaymentMethod {
    account_bank_name?: null | string;
    account_holder_type?: null | string;
    brand?: null | string;
    created_at?: string;
    default_for_currency?: boolean;
    exp?: Expiration;
    external_id?: null | string;
    id?: null | string;
    last_four?: null | string;
    name?: null | string;
    payment_method_type?: null | string;
    short_id?: null | string;
}

Properties

account_bank_name?: null | string

When Type = Bank, Name of the bank associated with the routing number

account_holder_type?: null | string

Holder type can be company or individual

brand?: null | string

When Type = Card, this will be the brand (e.g. Visa, etc)

created_at?: string
default_for_currency?: boolean
external_id?: null | string
id?: null | string
last_four?: null | string
name?: null | string
payment_method_type?: null | string
short_id?: null | string