import type { ProductDetailsLink } from './ProductDetailsLink'; /** * @type BonusDiscountLineItem: Document representing a bonus discount line item. * * @property bonusProducts: The bonus products the customer can choose from. * * @property couponCode: The coupon code that triggered the promotion, if applicable. * * @property id: The ID of the line item. It is read only. * * @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. * */ export type BonusDiscountLineItem = { bonusProducts?: Array; couponCode?: string; id?: string; maxBonusItems?: number; promotionId?: string; } & { [key: string]: any; };