Adding a Transaction to a Payment generates the PaymentTransactionAdded Message. Once a Transaction is added to the Payment, it can no longer be updated or deleted using the My Payments API.

interface MyPaymentAddTransactionAction {
    action: "addTransaction";
    transaction: TransactionDraft;
}

Properties

Properties

action: "addTransaction"
transaction: TransactionDraft

Transaction to add to the Payment.

Generated using TypeDoc