Interface InventoryEntryDraft

All Superinterfaces:
CustomizableDraft<InventoryEntryDraft>, io.vrap.rmf.base.client.Draft<InventoryEntryDraft>, WithKey
All Known Implementing Classes:
InventoryEntryDraftImpl

public interface InventoryEntryDraft extends CustomizableDraft<InventoryEntryDraft>, WithKey, io.vrap.rmf.base.client.Draft<InventoryEntryDraft>
InventoryEntryDraft
Example to create an instance using the builder pattern

     InventoryEntryDraft inventoryEntryDraft = InventoryEntryDraft.builder()
             .sku("{sku}")
             .quantityOnStock(0.3)
             .build()