Interface SetCustomLineItemTaxAmountChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetCustomLineItemTaxAmountChangeImpl

public interface SetCustomLineItemTaxAmountChange extends Change

Change triggered by the Set CustomLineItem TaxAmount update action.


Example to create an instance using the builder pattern

     SetCustomLineItemTaxAmountChange setCustomLineItemTaxAmountChange = SetCustomLineItemTaxAmountChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .customLineItem(customLineItemBuilder -> customLineItemBuilder)
             .customLineItemId("{customLineItemId}")
             .taxMode(TaxMode.PLATFORM)
             .build()