import type { Inventory } from './Inventory'; /** * @type Availability: Availability of one product across the requested inventory lists, or the site-assigned default inventory list. * * @property id: The id (SKU) of the product. * - **Min Length:** 1 * - **Max Length:** 100 * * @property inventories: The array of inventory information for the product. * */ export type Availability = { id: string; inventories: Array; } & { [key: string]: any; };