digital-humani-js-sdk
Version:
[](https://github.com/impe93/digital-humani-js-sdk/actions/workflows/continuous-integrations.yaml) [![License](
27 lines • 661 B
TypeScript
export interface Enterprise {
created: string;
updated: string;
id: string;
name: string;
contact: Contact;
}
export interface Contact {
name: string;
}
export interface Count {
count: number;
}
export declare type GetMonthlyTreeCountRequest = {
enterpriseId: string;
month: string;
startDate?: undefined;
endDate?: undefined;
};
export declare type GetUserTreeCountRequest = {
enterpriseId: string;
startDate: string;
endDate: string;
month?: undefined;
};
export declare type GetTreeCountRequest = GetMonthlyTreeCountRequest | GetUserTreeCountRequest;
//# sourceMappingURL=enterprise.models.d.ts.map