Class StagedOrderAddPaymentActionBuilder

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

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

     StagedOrderAddPaymentAction stagedOrderAddPaymentAction = StagedOrderAddPaymentAction.builder()
             .payment(paymentBuilder -> paymentBuilder)
             .build()