Class StagedOrderChangeShipmentStateActionBuilder

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

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

     StagedOrderChangeShipmentStateAction stagedOrderChangeShipmentStateAction = StagedOrderChangeShipmentStateAction.builder()
             .shipmentState(ShipmentState.SHIPPED)
             .build()