Class InventoryEntryRemoveQuantityActionBuilder

java.lang.Object
com.commercetools.api.models.inventory.InventoryEntryRemoveQuantityActionBuilder
All Implemented Interfaces:
Builder<InventoryEntryRemoveQuantityAction>

public class InventoryEntryRemoveQuantityActionBuilder extends Object implements Builder<InventoryEntryRemoveQuantityAction>
InventoryEntryRemoveQuantityActionBuilder
Example to create an instance using the builder pattern

     InventoryEntryRemoveQuantityAction inventoryEntryRemoveQuantityAction = InventoryEntryRemoveQuantityAction.builder()
             .quantity(0.3)
             .build()