/** * @type ProductDetailsLink: Document representing a link to the resource for product details. * * @property productDescription: The description of the product. * * @property productId: The id (SKU) of the product. * - **Min Length:** 1 * - **Max Length:** 100 * * @property productName: The name of the product. * * @property title: The link title. * */ export type ProductDetailsLink = { productDescription?: string; productId: string; productName?: string; title?: string; } & { [key: string]: any; };