Class ShippingMethodTaxAmountChangeValueBuilder

java.lang.Object
com.commercetools.history.models.change_value.ShippingMethodTaxAmountChangeValueBuilder
All Implemented Interfaces:
Builder<ShippingMethodTaxAmountChangeValue>

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

     ShippingMethodTaxAmountChangeValue shippingMethodTaxAmountChangeValue = ShippingMethodTaxAmountChangeValue.builder()
             .taxedPrice(taxedPriceBuilder -> taxedPriceBuilder)
             .taxRate(taxRateBuilder -> taxRateBuilder)
             .build()