/** * @type PromotionLink: Document representing a promotion link. * * @property promotionId: The unique id of the promotion. * - **Min Length:** 1 * - **Max Length:** 256 * * @property name: The localized name of the promotion. * - **Min Length:** 1 * - **Max Length:** 256 * * @property calloutMsg: The localized call-out message of the promotion. * - **Min Length:** 1 * - **Max Length:** 256 * * @property title: The link title. * - **Min Length:** 1 * - **Max Length:** 256 * * @property link: The URL addressing the promotion. * - **Min Length:** 1 * - **Max Length:** 2048 * */ export type PromotionLink = { promotionId?: string; name?: string; calloutMsg?: string; title?: string; link?: string; } & { [key: string]: any; };