/** * @type CouponRedemption: A redemption record returned from the coupon redemption resources. * * @property code: The coupon code that was redeemed. * * @property couponId: The coupon id that was redeemed. * * @property creationDate: Date when the redemption was created. * * @property customerEmail: The customer email that was used to redeem it. * * @property orderNo: The order number where the redemption occurred. * * @property viewOrderUrl: A URL able to access the order. * */ export type CouponRedemption = { code: string; couponId: string; creationDate: string; customerEmail: string; orderNo: string; viewOrderUrl: string; } & { [key: string]: any; };