ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
196 lines • 4.61 kB
TypeScript
/**
* 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 { PrescriptionDiagnosisInputModel } from './prescription-diagnosis-input-model';
import { PrescriptionMedicationInputModel } from './prescription-medication-input-model';
import { PrescriptionSymptomInputModel } from './prescription-symptom-input-model';
/**
*
* @export
* @interface CreatePrescriptionCommand
*/
export interface CreatePrescriptionCommand {
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'languageCode'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'hospitalId'?: string;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'patientId'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'doctorId'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'patientAffiliationId'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'doctorAffiliationId'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'appointmentId'?: string | null;
/**
*
* @type {boolean}
* @memberof CreatePrescriptionCommand
*/
'isConfirmed'?: boolean;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'height'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'heightUnit'?: string | null;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'weight'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'weightUnit'?: string | null;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'bodyMassIndex'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'bodyMassIndexUnit'?: string | null;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'pulseRate'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'pulseRateUnit'?: string | null;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'systolicBloodPressure'?: number | null;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'diastolicBloodPressure'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'bloodPressureUnit'?: string | null;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'bodyTemperature'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'bodyTemperatureUnit'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'advice'?: string | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'summary'?: string | null;
/**
*
* @type {boolean}
* @memberof CreatePrescriptionCommand
*/
'followUpNeeded'?: boolean;
/**
*
* @type {number}
* @memberof CreatePrescriptionCommand
*/
'followUpDays'?: number | null;
/**
*
* @type {string}
* @memberof CreatePrescriptionCommand
*/
'followUpNotes'?: string | null;
/**
*
* @type {Array<PrescriptionSymptomInputModel>}
* @memberof CreatePrescriptionCommand
*/
'prescriptionSymptoms'?: Array<PrescriptionSymptomInputModel> | null;
/**
*
* @type {Array<PrescriptionDiagnosisInputModel>}
* @memberof CreatePrescriptionCommand
*/
'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisInputModel> | null;
/**
*
* @type {Array<PrescriptionMedicationInputModel>}
* @memberof CreatePrescriptionCommand
*/
'prescriptionMedications'?: Array<PrescriptionMedicationInputModel> | null;
}
//# sourceMappingURL=create-prescription-command.d.ts.map