Interface OrderChangePaymentStateAction

All Superinterfaces:
OrderUpdateAction, ResourceUpdateAction<OrderUpdateAction>

public interface OrderChangePaymentStateAction extends OrderUpdateAction

Produces the Order Payment State Changed Message.


Example to create an instance using the builder pattern

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