Class SetShippingMethodChangeBuilder

java.lang.Object
com.commercetools.history.models.change.SetShippingMethodChangeBuilder
All Implemented Interfaces:
Builder<SetShippingMethodChange>

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

     SetShippingMethodChange setShippingMethodChange = SetShippingMethodChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .build()