Class InventoryQuantityValueBuilder

java.lang.Object
com.commercetools.history.models.change_value.InventoryQuantityValueBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<InventoryQuantityValue>

public class InventoryQuantityValueBuilder extends Object implements io.vrap.rmf.base.client.Builder<InventoryQuantityValue>
InventoryQuantityValueBuilder
Example to create an instance using the builder pattern

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