UNPKG

chargebee-typescript

Version:

A library in typescript for integrating with Chargebee.

12 lines (11 loc) 326 B
import { Model } from "./model"; export declare class BillingConfiguration extends Model { is_calendar_billing_enabled: boolean; billing_dates?: Array<BillingDate>; } export declare class BillingDate extends Model { start_date?: number; end_date?: number; } export declare namespace _billing_configuration { }