Interface InventoryEntryChangeQuantityAction

All Superinterfaces:
InventoryEntryUpdateAction, ResourceUpdateAction<InventoryEntryUpdateAction>

public interface InventoryEntryChangeQuantityAction extends InventoryEntryUpdateAction

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


Example to create an instance using the builder pattern

     InventoryEntryChangeQuantityAction inventoryEntryChangeQuantityAction = InventoryEntryChangeQuantityAction.builder()
             .quantity(0.3)
             .build()