@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
23 lines (22 loc) • 863 B
TypeScript
export interface GetAccountAllOfPlan {
type: GetAccountAllOfPlanTypeEnum;
creditsType: GetAccountAllOfPlanCreditsTypeEnum;
credits: number;
startDate?: Date;
endDate?: Date;
userLimit?: number;
}
export declare enum GetAccountAllOfPlanTypeEnum {
PayAsYouGo = "payAsYouGo",
Free = "free",
Subscription = "subscription",
Sms = "sms",
Reseller = "reseller"
}
export declare enum GetAccountAllOfPlanCreditsTypeEnum {
SendLimit = "sendLimit"
}
export declare function instanceOfGetAccountAllOfPlan(value: object): boolean;
export declare function GetAccountAllOfPlanFromJSON(json: any): GetAccountAllOfPlan;
export declare function GetAccountAllOfPlanFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccountAllOfPlan;
export declare function GetAccountAllOfPlanToJSON(value?: GetAccountAllOfPlan | null): any;