@sudoplatform/sudo-virtual-cards
    Preparing search index...

    Interface BankAccountFundingSource

    The Sudo Platform SDK representation of attributes of a bank account funding source.

    BankAccountFundingSource

    interface BankAccountFundingSource {
        bankAccountType: BankAccountType;
        createdAt: Date;
        currency: string;
        flags: FundingSourceFlags[];
        id: string;
        institutionLogo?: { data: string; type: string };
        institutionName: string;
        last4: string;
        owner: string;
        state: FundingSourceState;
        transactionVelocity?: TransactionVelocity;
        type: BankAccount;
        unfundedAmount?: CurrencyAmount;
        updatedAt: Date;
        version: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bankAccountType: BankAccountType

    The type of bank account

    createdAt: Date

    Date when the funding source was created.

    currency: string

    The currency of the funding source.

    id: string

    Unique identifier of the funding source.

    institutionLogo?: { data: string; type: string }
    institutionName: string

    The name of the institution at which the bank account is held.

    last4: string

    The last 4 digits of the bank account number.

    owner: string

    Identifier of the user that owns the funding source.

    The funding source state.

    transactionVelocity?: TransactionVelocity

    Effective transaction velocity, if any, applied to virtual card transactions funded by this funding source. This is the combined result of all velocity policies (global and funding source specific) as at the time this funding source was retrieved.

    Type of funding source

    unfundedAmount?: CurrencyAmount

    If this bank account funding source is unfunded, the amount by which it is unfunded in the funding source's currency. Undefined otherwise

    updatedAt: Date

    Date when the funding source was last updated.

    version: number

    Version of this entity.