interface InventoryEntryDraft {
    custom?: CustomFieldsDraft;
    expectedDelivery?: string;
    key?: string;
    quantityOnStock: number;
    restockableInDays?: number;
    sku: string;
    supplyChannel?: ChannelResourceIdentifier;
}

Properties

Custom Fields of the InventoryEntry.

expectedDelivery?: string

Date and time of the next restock.

key?: string

User-defined unique identifier for the InventoryEntry.

quantityOnStock: number

Overall amount of stock.

restockableInDays?: number

How often the InventoryEntry is restocked (in days).

sku: string

ProductVariant sku of the InventoryEntry.

Channel that supplies this InventoryEntry.

Generated using TypeDoc