Interface SetCustomLineItemDiscountedPricePerQuantityChange

All Superinterfaces:
Change

public interface SetCustomLineItemDiscountedPricePerQuantityChange extends Change

Change triggered after a recalculation of discount on a Custom Line Item.


Example to create an instance using the builder pattern

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