Interface MyPaymentUpdateAction

All Superinterfaces:
ResourceUpdateAction<MyPaymentUpdateAction>
All Known Subinterfaces:
MyPaymentAddTransactionAction, MyPaymentChangeAmountPlannedAction, MyPaymentSetCustomFieldAction, MyPaymentSetMethodInfoInterfaceAction, MyPaymentSetMethodInfoMethodAction, MyPaymentSetMethodInfoNameAction, MyPaymentSetTransactionCustomFieldAction
All Known Implementing Classes:
MyPaymentAddTransactionActionImpl, MyPaymentChangeAmountPlannedActionImpl, MyPaymentSetCustomFieldActionImpl, MyPaymentSetMethodInfoInterfaceActionImpl, MyPaymentSetMethodInfoMethodActionImpl, MyPaymentSetMethodInfoNameActionImpl, MyPaymentSetTransactionCustomFieldActionImpl, MyPaymentUpdateActionImpl

public interface MyPaymentUpdateAction extends ResourceUpdateAction<MyPaymentUpdateAction>
MyPaymentUpdateAction
Example to create a subtype instance using the builder pattern

     MyPaymentUpdateAction myPaymentUpdateAction = MyPaymentUpdateAction.addTransactionBuilder()
             transaction(transactionBuilder -> transactionBuilder)
             .build()