/** * @type CouponCodeRedemptionRequest: Document representing a request to redeem a coupon. * * @property code: The coupon code to redeem. * * @property customerEmail: The customer email to use on the redemption. * * @property orderNo: The order number to use on the redemption. In case the coupon was redeemed externally and no order number is associated, use a reference id or custom string to identify the source of the redemption. * */ export type CouponCodeRedemptionRequest = { code: string; customerEmail?: string; orderNo: string; } & { [key: string]: any; };