import { Coupon } from './Coupon'; export interface Discount { /** * ID of the `discount` object in the customer or subscription. */ id: string; /** * See [Coupon Object](ref:coupon-object). */ coupon: Partial; } //# sourceMappingURL=Discount.d.ts.map