Interface InventoryEntryAddQuantityAction

All Superinterfaces:
InventoryEntryUpdateAction, ResourceUpdateAction<InventoryEntryUpdateAction>
All Known Implementing Classes:
InventoryEntryAddQuantityActionImpl

public interface InventoryEntryAddQuantityAction extends InventoryEntryUpdateAction

Updates availableQuantity based on the new quantityOnStock and amount of active reservations.


Example to create an instance using the builder pattern

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