Interface InventoryEntry

All Superinterfaces:
BaseResource, Customizable<InventoryEntry>, DomainResource<InventoryEntry>, Identifiable<InventoryEntry>, InventoryEntryMixin, Referencable<InventoryEntry>, ResourceIdentifiable<InventoryEntry>, Versioned<InventoryEntry>, WithKey
All Known Implementing Classes:
InventoryEntryImpl

InventoryEntry
Example to create an instance using the builder pattern

     InventoryEntry inventoryEntry = InventoryEntry.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .sku("{sku}")
             .quantityOnStock(0.3)
             .availableQuantity(0.3)
             .build()