Class OrderChangePaymentStateActionBuilder

java.lang.Object
com.commercetools.api.models.order.OrderChangePaymentStateActionBuilder
All Implemented Interfaces:
Builder<OrderChangePaymentStateAction>

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

     OrderChangePaymentStateAction orderChangePaymentStateAction = OrderChangePaymentStateAction.builder()
             .paymentState(PaymentState.BALANCE_DUE)
             .build()