/** * @type Master: The master product is a representation of a group of variant products. This is a non-buyable entity, provides inheritable attributes for its product variants, and is used for navigation. *Doesn\'t have a SKU.* * * @property masterId: The ID (SKU) of the master product. * - **Min Length:** 1 * - **Max Length:** 100 * * @property orderable: A flag indicating whether at least one of the variants can be ordered. * * @property price: The minimum sales price of the related variants. * * @property priceMax: The maximum sales price of the related variants. * * @property prices: List of sale prices. * */ export type Master = { masterId: string; orderable?: boolean; price?: number; priceMax?: number; prices?: { [key: string]: number; }; } & { [key: string]: any; };