ch-api-client-typescript2
Version:
Openapi generated typescript-axios client for CloudHospital
196 lines • 4.26 kB
TypeScript
/**
* 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<PrescriptionSymptomModel>}
* @memberof PrescriptionModel
*/
'prescriptionSymptoms'?: Array<PrescriptionSymptomModel> | null;
/**
*
* @type {Array<PrescriptionDiagnosisModel>}
* @memberof PrescriptionModel
*/
'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisModel> | null;
/**
*
* @type {Array<PrescriptionMedicationModel>}
* @memberof PrescriptionModel
*/
'prescriptionMedications'?: Array<PrescriptionMedicationModel> | null;
}
//# sourceMappingURL=prescription-model.d.ts.map