/** * @type CouponSystemCodeConfig: * * @property codePrefix: The code prefix for system-generated coupon codes. * * @property numberOfCodes: The number of system coupon codes that can be issued. * */ export type CouponSystemCodeConfig = { codePrefix: string; numberOfCodes: number; } & { [key: string]: any; };