Typescript SDK Type Docs
    Preparing search index...

    Interface MyTransactionDraft

    interface MyTransactionDraft {
        amount: _Money;
        custom?: CustomFieldsDraft;
        interactionId?: string;
        interfaceId?: string;
        timestamp?: string;
        type: TransactionType;
    }
    Index

    Properties

    amount: _Money

    Money value for the Transaction.

    Custom Fields of the Transaction.

    interactionId?: string

    Identifier used by the payment service that manages the Transaction. Can be used to correlate the Transaction to an interface interaction.

    interfaceId?: string

    Identifier used by the payment service that processes the Payment (for example, a PSP) in the current transaction.

    timestamp?: string

    Date and time (UTC) the Transaction took place.

    Type of the Transaction. Only Authorization or Charge is allowed.