Interface LocationInventory

Location inventory information

interface LocationInventory {
    available: number;
    created_on: string;
    id: number;
    location_id: number;
    max_orderable?: number;
    tracked: boolean;
    updated_on: string;
}

Properties

available: number

Available quantity

created_on: string

Created timestamp

id: number

Unique identifier

location_id: number

Location ID

max_orderable?: number

Maximum quantity that can be ordered

tracked: boolean

Whether inventory is being tracked at this location

updated_on: string

Updated timestamp