Interface SetShippingMethodTaxRateChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetShippingMethodTaxRateChangeImpl

public interface SetShippingMethodTaxRateChange extends Change

Change triggered by the Set ShippingMethod TaxRate update action.


Example to create an instance using the builder pattern

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