Mayson Monorepo Documentation
    Preparing search index...

    Transactions represent changes to a FinancialAccount's balance.

    interface Transaction {
        id: string;
        object: "treasury.transaction";
        amount: number;
        balance_impact: Stripe.Treasury.Transaction.BalanceImpact;
        created: number;
        currency: string;
        description: string;
        entries?: ApiList<Stripe.Treasury.TransactionEntry>;
        financial_account: string;
        flow: string;
        flow_details?: Stripe.Treasury.Transaction.FlowDetails;
        flow_type: Stripe.Treasury.Transaction.FlowType;
        livemode: boolean;
        status: Stripe.Treasury.Transaction.Status;
        status_transitions: Stripe.Treasury.Transaction.StatusTransitions;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "treasury.transaction"

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

    amount: number

    Amount (in cents) transferred.

    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.

    description: string

    An arbitrary string attached to the object. Often useful for displaying to users.

    A list of TransactionEntries that are part of this Transaction. This cannot be expanded in any list endpoints.

    financial_account: string

    The FinancialAccount associated with this object.

    flow: string

    ID of the flow that created the Transaction.

    Details of the flow that created the Transaction.

    Type of the flow that created the 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.

    Status of the Transaction.