UNPKG

digital-humani-js-sdk

Version:

[![Continuous Integrations](https://github.com/impe93/digital-humani-js-sdk/actions/workflows/continuous-integrations.yaml/badge.svg?branch=main)](https://github.com/impe93/digital-humani-js-sdk/actions/workflows/continuous-integrations.yaml) [![License](

27 lines 661 B
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