Adding a Transaction to a Payment generates the PaymentTransactionAdded Message.

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

Properties

Properties

action: "addTransaction"
transaction: TransactionDraft

Value to append to the transactions array.

Generated using TypeDoc