Interface InventoryEntryUpdateAction

All Superinterfaces:
ResourceUpdateAction<InventoryEntryUpdateAction>
All Known Subinterfaces:
InventoryEntryAddQuantityAction, InventoryEntryChangeQuantityAction, InventoryEntryRemoveQuantityAction, InventoryEntrySetCustomFieldAction, InventoryEntrySetCustomTypeAction, InventoryEntrySetExpectedDeliveryAction, InventoryEntrySetKeyAction, InventoryEntrySetRestockableInDaysAction, InventoryEntrySetSupplyChannelAction
All Known Implementing Classes:
InventoryEntryAddQuantityActionImpl, InventoryEntryChangeQuantityActionImpl, InventoryEntryRemoveQuantityActionImpl, InventoryEntrySetCustomFieldActionImpl, InventoryEntrySetCustomTypeActionImpl, InventoryEntrySetExpectedDeliveryActionImpl, InventoryEntrySetKeyActionImpl, InventoryEntrySetRestockableInDaysActionImpl, InventoryEntrySetSupplyChannelActionImpl, InventoryEntryUpdateActionImpl

public interface InventoryEntryUpdateAction extends ResourceUpdateAction<InventoryEntryUpdateAction>
InventoryEntryUpdateAction
Example to create a subtype instance using the builder pattern

     InventoryEntryUpdateAction inventoryEntryUpdateAction = InventoryEntryUpdateAction.addQuantityBuilder()
             quantity(0.3)
             .build()