Class StagedOrderSetShippingAddressAndCustomShippingMethodActionBuilder

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

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

     StagedOrderSetShippingAddressAndCustomShippingMethodAction stagedOrderSetShippingAddressAndCustomShippingMethodAction = StagedOrderSetShippingAddressAndCustomShippingMethodAction.builder()
             .address(addressBuilder -> addressBuilder)
             .shippingMethodName("{shippingMethodName}")
             .shippingRate(shippingRateBuilder -> shippingRateBuilder)
             .build()