Mayson Monorepo Documentation
    Preparing search index...

    A credit balance transaction is a resource representing a transaction (either a credit or a debit) against an existing credit grant.

    interface CreditBalanceTransaction {
        id: string;
        object: "billing.credit_balance_transaction";
        created: number;
        credit: Stripe.Billing.CreditBalanceTransaction.Credit;
        credit_grant: string | Stripe.Billing.CreditGrant;
        debit: Stripe.Billing.CreditBalanceTransaction.Debit;
        effective_at: number;
        livemode: boolean;
        test_clock: string | Stripe.TestHelpers.TestClock;
        type: Stripe.Billing.CreditBalanceTransaction.Type;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "billing.credit_balance_transaction"

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

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    Credit details for this credit balance transaction. Only present if type is credit.

    credit_grant: string | Stripe.Billing.CreditGrant

    The credit grant associated with this credit balance transaction.

    Debit details for this credit balance transaction. Only present if type is debit.

    effective_at: number

    The effective time of this credit balance transaction.

    livemode: boolean

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

    test_clock: string | Stripe.TestHelpers.TestClock

    ID of the test clock this credit balance transaction belongs to.

    The type of credit balance transaction (credit or debit).