UNPKG

ch-admin-api-client-typescript

Version:
47 lines 1.32 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AppointmentStatisticsModel } from './appointment-statistics-model'; import { CallStatisticsModel } from './call-statistics-model'; import { GeneralStatisticsModel } from './general-statistics-model'; import { SurveyFormStatisticsModel } from './survey-form-statistics-model'; /** * * @export * @interface DashBoardModel */ export interface DashBoardModel { /** * * @type {GeneralStatisticsModel} * @memberof DashBoardModel */ 'general'?: GeneralStatisticsModel; /** * * @type {AppointmentStatisticsModel} * @memberof DashBoardModel */ 'appointment'?: AppointmentStatisticsModel; /** * * @type {SurveyFormStatisticsModel} * @memberof DashBoardModel */ 'surveyForm'?: SurveyFormStatisticsModel; /** * * @type {CallStatisticsModel} * @memberof DashBoardModel */ 'call'?: CallStatisticsModel; } //# sourceMappingURL=dash-board-model.d.ts.map