Class StagedOrderChangePaymentStateActionBuilder

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

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

     StagedOrderChangePaymentStateAction stagedOrderChangePaymentStateAction = StagedOrderChangePaymentStateAction.builder()
             .paymentState(PaymentState.BALANCE_DUE)
             .build()