/** * @type Image: Product image * * @property alt: The localized alternative text of the image. * * @property disBaseLink: Base URL for the Dynamic Image Service (DIS) address. This is only shown if the image is stored on the server and DIS is enabled. * * @property link: The URL of the actual image. * - **Min Length:** 1 * * @property title: The localized title of the image. * */ export type Image = { alt?: string; disBaseLink?: string; link: string; title?: string; } & { [key: string]: any; };