@paysafe/paysafe-wallet-saas-web
    Preparing search index...

    Interface UsBankAccount

    US Bank Account, that might support ACH, RFP, RTP or Wire Transfer.

    Account holder name might be required for name matching.

    interface UsBankAccount {
        accountHolderName?: string;
        accountNumber: string;
        accountType?: AccountType;
        bankCodeId?: string;
        bankName?: string;
        creationTime: string;
        customerId?: string;
        id?: string;
        instrumentType: InstrumentType;
        routingNumber: string;
        status?: PaymentInstrumentStatus;
    }

    Hierarchy (View Summary)

    Index

    Properties

    accountHolderName?: string

    This is the name of the customer or company that owns the bank account. As per regulations, the Wallet holder and bank account holder must be the same.

    accountNumber: string

    The bank account number.

    accountType?: AccountType

    The account type.

    bankCodeId?: string

    The bank code identifier.

    bankName?: string

    The bank name.

    creationTime: string

    Creation time.

    Format should be ISO 8601 in UTC. Represents RFC 3339, section 5.6 date-time.

    "2021-07-15T17:54:12Z"
    
    customerId?: string

    The customer to which this instrument belongs.

    id?: string

    The instrument id.

    instrumentType: InstrumentType

    The instrument type.

    routingNumber: string

    For USD accounts, this is the 9-digit routing number of the bank.

    The instrument status.