Interface InventoryItem

Inventory item information

interface InventoryItem {
    created_on: string;
    id: number;
    location_inventories: LocationInventory[];
    product_id: number;
    sku?: string;
    tracked: boolean;
    updated_on: string;
    variant_id: number;
}

Properties

created_on: string

Created timestamp

id: number

Unique identifier

location_inventories: LocationInventory[]

Location inventories

product_id: number

Product ID

sku?: string

SKU (Stock Keeping Unit)

tracked: boolean

Whether inventory is being tracked

updated_on: string

Updated timestamp

variant_id: number

Product variant ID