/** * @type CouponCode: A coupon code with accompanying stats for redemptions and issues. * * @property code: The code used to redeem the coupon. * * @property issued: Flag indicating if the coupon code has been issued. * * @property redemptionCount: The count of the number of redemptions associated with the code. * */ export type CouponCode = { code: string; issued: boolean; redemptionCount: number; } & { [key: string]: any; };