interface MyPaymentDraft {
    amountPlanned: _Money;
    custom?: CustomFieldsDraft;
    paymentMethodInfo?: PaymentMethodInfo;
    transaction?: MyTransactionDraft;
}

Properties

amountPlanned: _Money

Money value the Payment intends to receive from the customer. The value usually matches the Cart or Order gross total.

Custom Fields for the Payment.

paymentMethodInfo?: PaymentMethodInfo

Information regarding the payment interface (for example, a PSP), and the specific payment method used.

transaction?: MyTransactionDraft

Financial transactions of the TransactionTypes Authorization or Charge.

Generated using TypeDoc