import type { ProductReference } from './ProductReference'; /** * @type BonusDiscountLineItem: Document representing a bonus discount line item. * * @property bonusProducts: The bonus products from which the customer can choose. * * @property couponCode: The coupon code that triggered the promotion, if applicable. * - **Max Length:** 256 * * @property id: The ID of the line item. * - **Min Length:** 1 * - **Max Length:** 256 * * @property maxBonusItems: The maximum number of bonus items the user can select for this promotion. * * @property promotionId: The ID of the promotion that triggered the creation of the line item. * - **Max Length:** 256 * */ export type BonusDiscountLineItem = { bonusProducts?: Array; couponCode?: string; id?: string; maxBonusItems?: number; promotionId?: string; } & { [key: string]: any; };