/** * @type ProductPromotion: Document representing a product promotion. * * @property calloutMsg: The localized call-out message of the promotion. * - **Min Length:** 1 * - **Max Length:** 4000 * * @property promotionId: The unique ID of the promotion. * - **Min Length:** 1 * - **Max Length:** 260 * * @property promotionalPrice: The promotional price for this product. * */ export type ProductPromotion = { calloutMsg: string; promotionId: string; promotionalPrice: number; } & { [key: string]: any; };