Mayson Monorepo Documentation
    Preparing search index...

    TransactionEntries represent individual units of money movements within a single Transaction.

    interface TransactionEntry {
        id: string;
        object: "treasury.transaction_entry";
        balance_impact: Stripe.Treasury.TransactionEntry.BalanceImpact;
        created: number;
        currency: string;
        effective_at: number;
        financial_account: string;
        flow: string;
        flow_details?: Stripe.Treasury.TransactionEntry.FlowDetails;
        flow_type: Stripe.Treasury.TransactionEntry.FlowType;
        livemode: boolean;
        transaction: string | Stripe.Treasury.Transaction;
        type: Stripe.Treasury.TransactionEntry.Type;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "treasury.transaction_entry"

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

    Change to a FinancialAccount's balance

    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.

    effective_at: number

    When the TransactionEntry will impact the FinancialAccount's balance.

    financial_account: string

    The FinancialAccount associated with this object.

    flow: string

    Token of the flow associated with the TransactionEntry.

    Details of the flow associated with the TransactionEntry.

    Type of the flow associated with the TransactionEntry.

    livemode: boolean

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

    transaction: string | Stripe.Treasury.Transaction

    The Transaction associated with this object.

    The specific money movement that generated the TransactionEntry.