interface TransactionDraft {
    amount: _Money;
    custom?: CustomFieldsDraft;
    interactionId?: string;
    state?: string;
    timestamp?: string;
    type: string;
}

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.

state?: string

State of the Transaction.

timestamp?: string

Date and time (UTC) the Transaction took place.

type: string

Type of the Transaction.

Generated using TypeDoc