Class ShippingMethodChangeTaxCategoryChangeBuilder

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

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

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