/** * 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 { PrescriptionDiagnosisModel } from './prescription-diagnosis-model'; import { PrescriptionMedicationModel } from './prescription-medication-model'; import { PrescriptionSymptomModel } from './prescription-symptom-model'; /** * * @export * @interface PrescriptionModel */ export interface PrescriptionModel { /** * * @type {string} * @memberof PrescriptionModel */ 'id'?: string; /** * * @type {string} * @memberof PrescriptionModel */ 'languageCode'?: string | null; /** * * @type {string} * @memberof PrescriptionModel */ 'hospitalId'?: string; /** * * @type {string} * @memberof PrescriptionModel */ 'hospitalName'?: string | null; /** * * @type {string} * @memberof PrescriptionModel */ 'doctorName'?: string | null; /** * * @type {string} * @memberof PrescriptionModel */ 'appointmentId'?: string | null; /** * * @type {string} * @memberof PrescriptionModel */ 'prescriptionPdf'?: string | null; /** * * @type {boolean} * @memberof PrescriptionModel */ 'isConfirmed'?: boolean; /** * * @type {number} * @memberof PrescriptionModel */ 'height'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'heightUnit'?: string | null; /** * * @type {number} * @memberof PrescriptionModel */ 'weight'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'weightUnit'?: string | null; /** * * @type {number} * @memberof PrescriptionModel */ 'bodyMassIndex'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'bodyMassIndexUnit'?: string | null; /** * * @type {number} * @memberof PrescriptionModel */ 'pulseRate'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'pulseRateUnit'?: string | null; /** * * @type {number} * @memberof PrescriptionModel */ 'systolicBloodPressure'?: number | null; /** * * @type {number} * @memberof PrescriptionModel */ 'diastolicBloodPressure'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'bloodPressureUnit'?: string | null; /** * * @type {number} * @memberof PrescriptionModel */ 'bodyTemperature'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'bodyTemperatureUnit'?: string | null; /** * * @type {string} * @memberof PrescriptionModel */ 'advice'?: string | null; /** * * @type {string} * @memberof PrescriptionModel */ 'summary'?: string | null; /** * * @type {boolean} * @memberof PrescriptionModel */ 'followUpNeeded'?: boolean; /** * * @type {number} * @memberof PrescriptionModel */ 'followUpDays'?: number | null; /** * * @type {string} * @memberof PrescriptionModel */ 'followUpNotes'?: string | null; /** * * @type {Array} * @memberof PrescriptionModel */ 'prescriptionSymptoms'?: Array | null; /** * * @type {Array} * @memberof PrescriptionModel */ 'prescriptionDiagnoses'?: Array | null; /** * * @type {Array} * @memberof PrescriptionModel */ 'prescriptionMedications'?: Array | null; } //# sourceMappingURL=prescription-model.d.ts.map