@gradientedge/commercetools-utils
    Preparing search index...

    Interface InventoryEntryDraft

    interface InventoryEntryDraft {
        custom?: CustomFieldsDraft;
        expectedDelivery?: string;
        key?: string;
        maxCartQuantity?: number;
        minCartQuantity?: number;
        quantityOnStock: number;
        reservationExpirationInMinutes?: number;
        restockableInDays?: number;
        sku: string;
        stockLevels?: InventoryEntryStockLevels;
        supplyChannel?: ChannelResourceIdentifier;
    }
    Index

    Custom Fields for the InventoryEntry.

    expectedDelivery?: string

    Date and time of the next restock.

    key?: string

    User-defined unique identifier for the InventoryEntry.

    This field is optional for backwards compatibility reasons, but we strongly recommend setting it. Keys are mandatory for importing InventoryEntries with the [Import API](/api/import-export/overview) and the [Merchant Center](/merchant-center/import-data).
    
    maxCartQuantity?: number

    Maximum quantity that can be added to a Cart. See Quantity limits.

    minCartQuantity?: number

    Minimum quantity that can be added to a Cart. See Quantity limits.

    quantityOnStock: number

    Overall amount of stock. See Inventory checks and consistency for consistency information.

    reservationExpirationInMinutes?: number

    Expiration time of ReserveOnCart reservations associated with this InventoryEntry.

    - A Reservation is [ReserveOnCart](ctp:api:type:InventoryMode) if it was created for a [LineItem](ctp:api:type:LineItem) that is using the [ReserveOnCart](ctp:api:type:InventoryMode) inventory mode.
    - If this field is empty, the [Project](ctp:api:type:Project)-level reservation expiration time applies.
    
    restockableInDays?: number

    How often the InventoryEntry is restocked (in days).

    sku: string

    ProductVariant sku of the InventoryEntry.

    Configuration of stock levels for the InventoryEntry. Corresponding Messages are triggered when the quantityOnStock reaches the configured levels.

    Channel that supplies this InventoryEntry.