Interface SetLineItemTotalPriceChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetLineItemTotalPriceChangeImpl

public interface SetLineItemTotalPriceChange extends Change

Change triggered by the Set LineItemTotalPrice update action.


Example to create an instance using the builder pattern

     SetLineItemTotalPriceChange setLineItemTotalPriceChange = SetLineItemTotalPriceChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .lineItem(lineItemBuilder -> lineItemBuilder)
             .build()