Class StagedOrderRemovePaymentActionBuilder

java.lang.Object
com.commercetools.api.models.order_edit.StagedOrderRemovePaymentActionBuilder
All Implemented Interfaces:
Builder<StagedOrderRemovePaymentAction>

public class StagedOrderRemovePaymentActionBuilder extends Object implements Builder<StagedOrderRemovePaymentAction>
StagedOrderRemovePaymentActionBuilder
Example to create an instance using the builder pattern

     StagedOrderRemovePaymentAction stagedOrderRemovePaymentAction = StagedOrderRemovePaymentAction.builder()
             .payment(paymentBuilder -> paymentBuilder)
             .build()