/** * @type ProductReference: Document representing a product. * * @property productId: The id (SKU) of the product. * - **Min Length:** 1 * - **Max Length:** 100 * * @property productName: The name of the product. * - **Max Length:** 4000 * */ export type ProductReference = { productId?: string; productName?: string; } & { [key: string]: any; };