Interface InventoryEntryReorderPointMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface InventoryEntryReorderPointMessagePayload extends MessagePayload

Generated after InventoryEntry quantityOnStock reaches the configured reorder point level. For more information, see InventoryEntryStockLevels.


Example to create an instance using the builder pattern

     InventoryEntryReorderPointMessagePayload inventoryEntryReorderPointMessagePayload = InventoryEntryReorderPointMessagePayload.builder()
             .sku("{sku}")
             .quantityOnStock(0.3)
             .build()