/** * @type ShippingPromotion: Document representing a shipping promotion. * * @property calloutMsg: The localized callout message of the promotion. * * @property promotionId: The unique ID of the promotion. * * @property promotionName: The localized promotion name. * */ export type ShippingPromotion = { calloutMsg?: string; promotionId?: string; promotionName?: string; } & { [key: string]: any; };