Mayson Monorepo Documentation
    Preparing search index...

    A Transaction represents a real transaction that affects a Financial Connections Account balance.

    interface Transaction {
        id: string;
        object: "financial_connections.transaction";
        account: string;
        amount: number;
        currency: string;
        description: string;
        livemode: boolean;
        status: Stripe.FinancialConnections.Transaction.Status;
        status_transitions: Stripe.FinancialConnections.Transaction.StatusTransitions;
        transacted_at: number;
        transaction_refresh: string;
        updated: number;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "financial_connections.transaction"

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

    account: string

    The ID of the Financial Connections Account this transaction belongs to.

    amount: number

    The amount of this transaction, in cents (or local equivalent).

    currency: string

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

    description: string

    The description of this 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.

    The status of the transaction.

    transacted_at: number

    Time at which the transaction was transacted. Measured in seconds since the Unix epoch.

    transaction_refresh: string

    The token of the transaction refresh that last updated or created this transaction.

    updated: number

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