citeright-sdk-js
Version:
An SDK to connect to the CiteRight API.
15 lines (14 loc) • 436 B
TypeScript
export declare class CompanyDTO {
[key: string]: any;
id: string;
name: string;
planId: string;
planType: string;
subscriptionId: string;
userBillableCount: number;
userCount: number;
userLimit: number;
trialEndDate: Date | null;
status: 'future' | 'in_trial' | 'active' | 'non_renewing' | 'paused' | 'cancelled';
cardStatus: 'no_card' | 'valid' | 'expiring' | 'expired';
}