Class SetShippingMethodTaxCategoryChangeBuilder

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

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

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