UNPKG

ch-admin-api-client-typescript

Version:
39 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 { BatchAddAppointmentTimetableModel } from './batch-add-appointment-timetable-model'; import { BatchUpdateAppointmentTimetableModel } from './batch-update-appointment-timetable-model'; /** * * @export * @interface BatchServiceAppointmentTimetablesCommand */ export interface BatchServiceAppointmentTimetablesCommand { /** * * @type {Array<BatchAddAppointmentTimetableModel>} * @memberof BatchServiceAppointmentTimetablesCommand */ 'adds'?: Array<BatchAddAppointmentTimetableModel> | null; /** * * @type {Array<BatchUpdateAppointmentTimetableModel>} * @memberof BatchServiceAppointmentTimetablesCommand */ 'updates'?: Array<BatchUpdateAppointmentTimetableModel> | null; /** * * @type {Array<string>} * @memberof BatchServiceAppointmentTimetablesCommand */ 'deletes'?: Array<string> | null; } //# sourceMappingURL=batch-service-appointment-timetables-command.d.ts.map