Interface SetShippingMethodTaxAmountChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetShippingMethodTaxAmountChangeImpl

public interface SetShippingMethodTaxAmountChange extends Change

Change triggered by the Set ShippingMethod TaxAmount update action.


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()