interface MyTransactionDraft {
    amount: _Money;
    custom?: CustomFieldsDraft;
    interactionId?: 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.

timestamp?: string

Date and time (UTC) the Transaction took place.

type: string

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

Generated using TypeDoc