Interface InventoryEntryQuantitySetMessagePayload

All Superinterfaces:
MessagePayload
All Known Implementing Classes:
InventoryEntryQuantitySetMessagePayloadImpl

Generated after a successful Add Quantity, Remove Quantity or Change Quantity update action. Inventory changes as a result of Order creation do not trigger this message.


Example to create an instance using the builder pattern

     InventoryEntryQuantitySetMessagePayload inventoryEntryQuantitySetMessagePayload = InventoryEntryQuantitySetMessagePayload.builder()
             .oldQuantityOnStock(0.3)
             .newQuantityOnStock(0.3)
             .oldAvailableQuantity(0.3)
             .newAvailableQuantity(0.3)
             .build()