/** * @type ExcludedProduct: The excluded product record. * * @property productId: The id (SKU) of the product. * - **Min Length:** 1 * - **Max Length:** 100 * */ export type ExcludedProduct = { productId: string; } & { [key: string]: any; };