UNPKG

ch-admin-api-client-typescript

Version:
44 lines 1.06 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 { AppointmentStatus } from './appointment-status'; /** * * @export * @interface AppointmentChangeLogModel */ export interface AppointmentChangeLogModel { /** * * @type {AppointmentStatus} * @memberof AppointmentChangeLogModel */ 'status'?: AppointmentStatus; /** * * @type {string} * @memberof AppointmentChangeLogModel */ 'actorId'?: string; /** * * @type {Date} * @memberof AppointmentChangeLogModel */ 'createdDate'?: Date; /** * * @type {string} * @memberof AppointmentChangeLogModel */ 'actorName'?: string | null; } //# sourceMappingURL=appointment-change-log-model.d.ts.map