Interface InventoryEntryAddQuantityAction

All Superinterfaces:
InventoryEntryUpdateAction, ResourceUpdateAction<InventoryEntryUpdateAction>

public interface InventoryEntryAddQuantityAction extends InventoryEntryUpdateAction

Incrementally updates the quantityOnStock by the specified amount. This changes the availableQuantity, based on the number of active reservations.

To set an absolute quantity value instead, use the InventoryEntryChangeQuantityAction update action.


Example to create an instance using the builder pattern

     InventoryEntryAddQuantityAction inventoryEntryAddQuantityAction = InventoryEntryAddQuantityAction.builder()
             .quantity(0.3)
             .build()