Interface WarehouseItem

Hierarchy

Properties

availability: ({
    from_unlimited: boolean;
    quantity: null | number;
    shipping_date: null;
    shipping_time: number;
} | {
    from_unlimited: boolean;
    quantity: null | number;
    shipping_date: string;
    shipping_time: null;
} | {
    from_unlimited: boolean;
    quantity: null | number;
    shipping_date: null;
    shipping_time: null;
})[]

Summary of the item availability for a different time frames quantity == null means, that product has infinity quantity in that time frame

id: string
metadata: Metadata
metadata_private?: Metadata
name: string
quantity: number
schemas: SchemaBase[]
shipping_date: null | string
shipping_time: null | number
sku: string
unlimited_stock_shipping_date: null | string

Means that the shipment will be processed after the given date. The item has unlimited stock up to and including the date specified. Once that date has passed, the product becomes unavailable.

unlimited_stock_shipping_time: null | number

Means the shipping time in days of items in unlimited quantity

Generated using TypeDoc