Interface InventoryEntryCreatedMessagePayload

All Superinterfaces:
MessagePayload
All Known Implementing Classes:
InventoryEntryCreatedMessagePayloadImpl

public interface InventoryEntryCreatedMessagePayload extends MessagePayload

Generated after a successful Create InventoryEntry request.


Example to create an instance using the builder pattern

     InventoryEntryCreatedMessagePayload inventoryEntryCreatedMessagePayload = InventoryEntryCreatedMessagePayload.builder()
             .inventoryEntry(inventoryEntryBuilder -> inventoryEntryBuilder)
             .build()