Mayson Monorepo Documentation
    Preparing search index...
    interface UsBankAccount {
        account_holder_type: Stripe.Charge.PaymentMethodDetails.UsBankAccount.AccountHolderType;
        account_type: Stripe.Charge.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

    Account holder type: individual or company.

    Account type: checkings or savings. Defaults to checking if omitted.

    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

    Reference number to locate ACH payments with customer's bank.

    routing_number: string

    Routing number of the bank account.