Interface ProductDiscountValueRelative

All Superinterfaces:
ProductDiscountValue
All Known Implementing Classes:
ProductDiscountValueRelativeImpl

Discounts the product price by a percentage, defined by the permyriad field.


Example to create an instance using the builder pattern

     ProductDiscountValueRelative productDiscountValueRelative = ProductDiscountValueRelative.builder()
             .permyriad(0.3)
             .build()