Interface SetCustomLineItemTotalPriceChange

All Superinterfaces:
Change
All Known Implementing Classes:
SetCustomLineItemTotalPriceChangeImpl

public interface SetCustomLineItemTotalPriceChange extends Change
SetCustomLineItemTotalPriceChange
Example to create an instance using the builder pattern

     SetCustomLineItemTotalPriceChange setCustomLineItemTotalPriceChange = SetCustomLineItemTotalPriceChange.builder()
             .change("{change}")
             .previousValue(previousValueBuilder -> previousValueBuilder)
             .nextValue(nextValueBuilder -> nextValueBuilder)
             .customLineItem(customLineItemBuilder -> customLineItemBuilder)
             .customLineItemId("{customLineItemId}")
             .build()