import type { RedemptionLimitPerPeriod } from './RedemptionLimitPerPeriod'; /** * @type RedemptionLimits: Document representing a coupon. * * @property limitPerCode: The redemption limit per code. * * @property limitPerCustomer: The redemption limit per customer. * * @property limitPerTimeFrame: The redemption limit per time frame. * */ export type RedemptionLimits = { limitPerCode: number; limitPerCustomer: number; limitPerTimeFrame: RedemptionLimitPerPeriod; } & { [key: string]: any; };