Class SetShippingRateChangeBuilder

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

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

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