chargebee
Version:
A library for integrating with Chargebee.
26 lines (21 loc) • 615 B
TypeScript
///<reference path='./../core.d.ts'/>
///<reference path='./../index.d.ts'/>
declare module 'chargebee' {
export interface Configuration {
domain?: string;
product_catalog_version?: ProductCatalogVersionEnum;
chargebee_response_schema_type?: ChargebeeResponseSchemaTypeEnum;
}
export namespace Configuration {
export class ConfigurationResource {
list(
headers?: ChargebeeRequestHeader,
): Promise<ChargebeeResponse<ListResponse>>;
}
export interface ListResponse {
configurations: Configuration[];
}
// REQUEST PARAMS
//---------------
}
}