Mayson Monorepo Documentation
    Preparing search index...
    interface UsBankAccount {
        account_holder_type: Stripe.PaymentRecord.PaymentMethodDetails.UsBankAccount.AccountHolderType;
        account_type: Stripe.PaymentRecord.PaymentMethodDetails.UsBankAccount.AccountType;
        bank_name: string;
        expected_debit_date?: string;
        fingerprint: string;
        last4: string;
        mandate?: string | Stripe.Mandate;
        payment_reference: string;
        routing_number: string;
    }
    Index

    Properties

    The type of entity that holds the account. This can be either 'individual' or 'company'.

    The type of the bank account. This can be either 'checking' or 'savings'.

    bank_name: string

    Name of the bank associated with the bank account.

    expected_debit_date?: string

    Estimated date to debit the customer's bank account. A date string in YYYY-MM-DD format.

    fingerprint: string

    Uniquely identifies this particular bank account. You can use this attribute to check whether two bank accounts are the same.

    last4: string

    Last four digits of the bank account number.

    mandate?: string | Stripe.Mandate

    ID of the mandate used to make this payment.

    payment_reference: string

    The ACH payment reference for this transaction.

    routing_number: string

    The routing number for the bank account.