Mayson Monorepo Documentation
    Preparing search index...

    Indicates the billing credit balance for billing credits granted to a customer.

    interface CreditBalanceSummary {
        object: "billing.credit_balance_summary";
        balances: Stripe.Billing.CreditBalanceSummary.Balance[];
        customer: string | Stripe.Customer | DeletedCustomer;
        customer_account: string;
        livemode: boolean;
    }
    Index

    Properties

    object: "billing.credit_balance_summary"

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

    The billing credit balances. One entry per credit grant currency. If a customer only has credit grants in a single currency, then this will have a single balance entry.

    customer: string | Stripe.Customer | DeletedCustomer

    The customer the balance is for.

    customer_account: string

    The account the balance is for.

    livemode: boolean

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