Mayson Monorepo Documentation
    Preparing search index...
    interface Cash {
        available: { [key: string]: number };
    }
    Index

    Properties

    Properties

    available: { [key: string]: number }

    The funds available to the account holder. Typically this is the current balance after subtracting any outbound pending transactions and 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.