Class SetShippingMethodTaxAmountChangeBuilder

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

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

     SetShippingMethodTaxAmountChange setShippingMethodTaxAmountChange = SetShippingMethodTaxAmountChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .taxMode(TaxMode.PLATFORM)
             .build()