chargebee-typescript
Version:
A library in typescript for integrating with Chargebee.
14 lines (13 loc) • 340 B
TypeScript
import { Model } from "./model";
export declare class ImpactedSubscription extends Model {
count?: number;
download?: Download;
subscription_ids?: any;
}
export declare class Download extends Model {
download_url: string;
valid_till: number;
mime_type?: string;
}
export declare namespace _impacted_subscription {
}