Mayson Monorepo Documentation
    Preparing search index...

    Any use of an issued card that results in funds entering or leaving your Stripe account, such as a completed purchase or refund, is represented by an Issuing Transaction object.

    Related guide: Issued card transactions

    interface Transaction {
        id: string;
        object: "issuing.transaction";
        amount: number;
        amount_details: Stripe.Issuing.Transaction.AmountDetails;
        authorization: string | Stripe.Issuing.Authorization;
        balance_transaction: string | Stripe.BalanceTransaction;
        card: string | Stripe.Issuing.Card;
        cardholder: string | Stripe.Issuing.Cardholder;
        created: number;
        currency: string;
        dispute: string | Stripe.Issuing.Dispute;
        livemode: boolean;
        merchant_amount: number;
        merchant_currency: string;
        merchant_data: Stripe.Issuing.Transaction.MerchantData;
        metadata: Metadata;
        network_data: Stripe.Issuing.Transaction.NetworkData;
        purchase_details?: Stripe.Issuing.Transaction.PurchaseDetails;
        token?: string | Stripe.Issuing.Token;
        treasury?: Stripe.Issuing.Transaction.Treasury;
        type: Stripe.Issuing.Transaction.Type;
        wallet: Stripe.Issuing.Transaction.Wallet;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "issuing.transaction"

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

    amount: number

    The transaction amount, which will be reflected in your balance. This amount is in your currency and in the smallest currency unit.

    Detailed breakdown of amount components. These amounts are denominated in currency and in the smallest currency unit.

    authorization: string | Stripe.Issuing.Authorization

    The Authorization object that led to this transaction.

    balance_transaction: string | Stripe.BalanceTransaction

    ID of the balance transaction associated with this transaction.

    card: string | Stripe.Issuing.Card

    The card used to make this transaction.

    cardholder: string | Stripe.Issuing.Cardholder

    The cardholder to whom this transaction belongs.

    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.

    dispute: string | Stripe.Issuing.Dispute

    If you've disputed the transaction, the ID of the dispute.

    livemode: boolean

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

    merchant_amount: number

    The amount that the merchant will receive, denominated in merchant_currency and in the smallest currency unit. It will be different from amount if the merchant is taking payment in a different currency.

    merchant_currency: string

    The currency with which the merchant is taking payment.

    metadata: Metadata

    Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

    Details about the transaction, such as processing dates, set by the card network.

    Additional purchase information that is optionally provided by the merchant.

    token?: string | Stripe.Issuing.Token

    Token object used for this transaction. If a network token was not used for this transaction, this field will be null.

    Treasury details related to this transaction if it was created on a [FinancialAccount](/docs/api/treasury/financial_accounts

    The nature of the transaction.

    The digital wallet used for this transaction. One of apple_pay, google_pay, or samsung_pay.