UNPKG

ch-admin-api-client-typescript

Version:
182 lines 3.72 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 { Gender } from './gender'; /** * * @export * @interface CreatePatientCommand */ export interface CreatePatientCommand { /** * * @type {string} * @memberof CreatePatientCommand */ 'userName'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'email'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'firstName'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'lastName'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'phone'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'photo'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'photoThumbnail'?: string | null; /** * * @type {Gender} * @memberof CreatePatientCommand */ 'gender'?: Gender; /** * * @type {Date} * @memberof CreatePatientCommand */ 'dateOfBirth'?: Date | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'timeZone'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof CreatePatientCommand */ 'languageCode'?: string | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'name'?: string | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'height'?: number | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'heightUnit'?: string | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'weight'?: number | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'weightUnit'?: string | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'bodyMassIndex'?: number | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'bodyMassIndexUnit'?: string | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'pulseRate'?: number | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'pulseRateUnit'?: string | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'systolicBloodPressure'?: number | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'diastolicBloodPressure'?: number | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'bloodPressureUnit'?: string | null; /** * * @type {number} * @memberof CreatePatientCommand */ 'bodyTemperature'?: number | null; /** * * @type {string} * @memberof CreatePatientCommand */ 'bodyTemperatureUnit'?: string | null; /** * * @type {boolean} * @memberof CreatePatientCommand */ 'needToCreateIdentityAccount'?: boolean; } //# sourceMappingURL=create-patient-command.d.ts.map