Interface DiscountedLineItemPortion

All Known Implementing Classes:
DiscountedLineItemPortionImpl

public interface DiscountedLineItemPortion
DiscountedLineItemPortion
Example to create an instance using the builder pattern

     DiscountedLineItemPortion discountedLineItemPortion = DiscountedLineItemPortion.builder()
             .discount(discountBuilder -> discountBuilder)
             .discountedAmount(discountedAmountBuilder -> discountedAmountBuilder)
             .build()