Interface InventoryQuantityValue

All Known Implementing Classes:
InventoryQuantityValueImpl

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

     InventoryQuantityValue inventoryQuantityValue = InventoryQuantityValue.builder()
             .quantityOnStock(1)
             .availableQuantity(1)
             .build()