Mayson Monorepo Documentation
    Preparing search index...
    interface Balance {
        as_of: number;
        cash?: Cash;
        credit?: Stripe.FinancialConnections.Account.Balance.Credit;
        current: { [key: string]: number };
        type: Stripe.FinancialConnections.Account.Balance.Type;
    }
    Index

    Properties

    as_of: number

    The time that the external institution calculated this balance. Measured in seconds since the Unix epoch.

    cash?: Cash
    current: { [key: string]: number }

    The balances owed to (or by) the account holder, before subtracting any outbound pending transactions or adding any inbound pending transactions.

    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.

    The type of the balance. An additional hash is included on the balance with a name matching this value.