UNPKG

ch-api-client-typescript2

Version:
92 lines 1.96 kB
/** * CloudHospital Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 2 * 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 { Gender } from './gender'; /** * * @export * @interface UpdateAppointmentCommand */ export interface UpdateAppointmentCommand { /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'firstName'?: string | null; /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'lastName'?: string | null; /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'email'?: string | null; /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'phone'?: string | null; /** * * @type {Date} * @memberof UpdateAppointmentCommand */ 'dateOfBirth'?: Date | null; /** * * @type {Gender} * @memberof UpdateAppointmentCommand */ 'gender'?: Gender; /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'timeZone'?: string | null; /** * * @type {string} * @memberof UpdateAppointmentCommand */ 'comment'?: string | null; /** * * @type {number} * @memberof UpdateAppointmentCommand */ 'quantity'?: number; /** * * @type {Date} * @memberof UpdateAppointmentCommand */ 'approximateDateStart'?: Date; /** * * @type {Date} * @memberof UpdateAppointmentCommand */ 'approximateDateEnd'?: Date; } //# sourceMappingURL=update-appointment-command.d.ts.map