chargebee
Version:
A library for integrating with Chargebee.
21 lines (18 loc) • 458 B
TypeScript
///<reference path='./../core.d.ts'/>
///<reference path='./../index.d.ts'/>
declare module 'chargebee' {
export interface ImpactedSubscription {
count?: number;
download?: ImpactedSubscription.Download;
subscription_ids?: any;
}
export namespace ImpactedSubscription {
export interface Download {
download_url: string;
valid_till: number;
mime_type?: string;
}
// REQUEST PARAMS
//---------------
}
}