/** * @type Master: Representation of a group of variant products by an attribute. This is a non-buyable entity, provides inheritable attributes for it\'s product variants, and is used for navigation. *Does\'nt have a SKU.* * * @property masterId: The id (SKU) of the product. * - **Min Length:** 1 * - **Max Length:** 100 * * @property orderable: A flag indicating whether at least one of the variants is orderable. * * @property price: The minimum sales price of the related variants. * * @property priceMax: The maximum sales of related variants. * * @property prices: prices * */ export type Master = { masterId: string; orderable?: boolean; price?: number; priceMax?: number; prices?: { [key: string]: number; }; } & { [key: string]: any; };