Mayson Monorepo Documentation
    Preparing search index...

    A customer's Cash balance represents real funds. Customers can add funds to their cash balance by sending a bank transfer. These funds can be used for payment and can eventually be paid out to your bank account.

    interface CashBalance {
        object: "cash_balance";
        available: { [key: string]: number };
        customer: string;
        customer_account: string;
        livemode: boolean;
        settings: Stripe.CashBalance.Settings;
    }
    Index

    Properties

    object: "cash_balance"

    String representing the object's type. Objects of the same type share the same value.

    available: { [key: string]: number }

    A hash of all cash balances available to this customer. You cannot delete a customer with any cash balances, even if the balance is 0. Amounts are represented in the smallest currency unit.

    customer: string

    The ID of the customer whose cash balance this object represents.

    customer_account: string

    The ID of an Account representing a customer whose cash balance this object represents.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.