Balance: {
    asOf: number;
    type: BalanceType;
    cash: { available: Map<String, number> | null };
    credit: { used: Map<String, number> | null };
    current: Map<String, number>;
}

Type declaration

  • asOf: number

    The UNIX timestamp (in milliseconds) of time that the external institution calculated this balance.

  • type: BalanceType

    The type of this balance, either cash or credit.

  • cash: { available: Map<String, number> | null }

    The funds available to the account holder. Typically this is the current balance less any holds. Each key is a three-letter ISO currency code, in lowercase. Each value is an integer amount. A positive amount indicates money owed to the account holder. A negative amount indicates money owed by the account holder.

  • credit: { used: Map<String, number> | null }

    The credit that has been used by the account holder. Each key is a three-letter ISO currency code, in lowercase. Each value is a integer amount. A positive amount indicates money owed to the account holder. A negative amount indicates money owed by the account holder.

  • current: Map<String, number>

    The balances owed to (or by) the account holder. Each key is a three-letter ISO currency code, in lowercase. Each value is a integer amount. A positive amount indicates money owed to the account holder. A negative amount indicates money owed by the account holder.

MMNEPVFCICPMFPCPTTAAATR