Class InventoryEntryUpdateBuilder

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

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

     InventoryEntryUpdate inventoryEntryUpdate = InventoryEntryUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()