Interface MyPaymentAddTransactionAction

All Superinterfaces:
MyPaymentUpdateAction, ResourceUpdateAction<MyPaymentUpdateAction>

public interface MyPaymentAddTransactionAction extends MyPaymentUpdateAction

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.


Example to create an instance using the builder pattern

     MyPaymentAddTransactionAction myPaymentAddTransactionAction = MyPaymentAddTransactionAction.builder()
             .transaction(transactionBuilder -> transactionBuilder)
             .build()