interface MyPaymentDraft {
    amountPlanned: _Money;
    custom?: CustomFieldsDraft;
    paymentMethodInfo?: PaymentMethodInfoDraft;
    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?: PaymentMethodInfoDraft

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.