chargebee-typescript
Version:
A library in typescript for integrating with Chargebee.
23 lines (22 loc) • 528 B
TypeScript
import { Model } from "./model";
export declare class Discount extends Model {
id: string;
invoice_name?: string;
type: string;
percentage?: number;
amount?: number;
currency_code?: string;
duration_type: string;
period?: number;
period_unit?: string;
included_in_mrr: boolean;
apply_on: string;
item_price_id?: string;
created_at: number;
apply_till?: number;
applied_count?: number;
coupon_id: string;
index: number;
}
export declare namespace _discount {
}