chargebee
Version:
A library for integrating with Chargebee.
19 lines (16 loc) • 437 B
TypeScript
///<reference path='./../core.d.ts'/>
///<reference path='./../index.d.ts'/>
declare module 'chargebee' {
export interface BillingConfiguration {
is_calendar_billing_enabled: boolean;
billing_dates?: BillingConfiguration.BillingDate[];
}
export namespace BillingConfiguration {
export interface BillingDate {
start_date?: number;
end_date?: number;
}
// REQUEST PARAMS
//---------------
}
}