interface ProductVariantChannelAvailability {
    availableQuantity?: number;
    id: string;
    isOnStock?: boolean;
    restockableInDays?: number;
    version: number;
}

Properties

availableQuantity?: number

Number of items of this Product Variant that are in stock in a specified Channel.

id: string

Unique identifier of the InventoryEntry.

isOnStock?: boolean

Indicates whether a Product Variant is in stock in a specified Channel.

restockableInDays?: number

Number of days to restock a Product Variant once it is out of stock in a specified Channel.

version: number

Current version of the InventoryEntry.

Generated using TypeDoc