Mayson Monorepo Documentation
    Preparing search index...

    The ApplicationFee object.

    interface ApplicationFee {
        id: string;
        object: "application_fee";
        account: string | Stripe.Account;
        amount: number;
        amount_refunded: number;
        application: string | Application;
        balance_transaction: string | Stripe.BalanceTransaction;
        charge: string | Stripe.Charge;
        created: number;
        currency: string;
        fee_source: Stripe.ApplicationFee.FeeSource;
        livemode: boolean;
        originating_transaction: string | Stripe.Charge;
        refunded: boolean;
        refunds: ApiList<FeeRefund>;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "application_fee"

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

    account: string | Stripe.Account

    ID of the Stripe account this fee was taken from.

    amount: number

    Amount earned, in cents (or local equivalent).

    amount_refunded: number

    Amount in cents (or local equivalent) refunded (can be less than the amount attribute on the fee if a partial refund was issued)

    application: string | Application

    ID of the Connect application that earned the fee.

    balance_transaction: string | Stripe.BalanceTransaction

    Balance transaction that describes the impact of this collected application fee on your account balance (not including refunds).

    charge: string | Stripe.Charge

    ID of the charge that the application fee was taken from.

    created: number

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

    currency: string

    Three-letter ISO currency code, in lowercase. Must be a supported currency.

    Polymorphic source of the application fee. Includes the ID of the object the application fee was created from.

    livemode: boolean

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

    originating_transaction: string | Stripe.Charge

    ID of the corresponding charge on the platform account, if this fee was the result of a charge using the destination parameter.

    refunded: boolean

    Whether the fee has been fully refunded. If the fee is only partially refunded, this attribute will still be false.

    refunds: ApiList<FeeRefund>

    A list of refunds that have been applied to the fee.