/**
 * 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 UpdatePrescriptionCommand
 */
export interface UpdatePrescriptionCommand {
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'languageCode'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof UpdatePrescriptionCommand
     */
    'isConfirmed'?: boolean | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'height'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'heightUnit'?: string | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'weight'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'weightUnit'?: string | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'bodyMassIndex'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'bodyMassIndexUnit'?: string | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'pulseRate'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'pulseRateUnit'?: string | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'systolicBloodPressure'?: number | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'diastolicBloodPressure'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'bloodPressureUnit'?: string | null;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'bodyTemperature'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'bodyTemperatureUnit'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'advice'?: string | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'summary'?: string | null;
    /**
     *
     * @type {boolean}
     * @memberof UpdatePrescriptionCommand
     */
    'followUpNeeded'?: boolean;
    /**
     *
     * @type {number}
     * @memberof UpdatePrescriptionCommand
     */
    'followUpDays'?: number | null;
    /**
     *
     * @type {string}
     * @memberof UpdatePrescriptionCommand
     */
    'followUpNotes'?: string | null;
    /**
     *
     * @type {Array<PrescriptionSymptomInputModel>}
     * @memberof UpdatePrescriptionCommand
     */
    'prescriptionSymptoms'?: Array<PrescriptionSymptomInputModel> | null;
    /**
     *
     * @type {Array<PrescriptionDiagnosisInputModel>}
     * @memberof UpdatePrescriptionCommand
     */
    'prescriptionDiagnoses'?: Array<PrescriptionDiagnosisInputModel> | null;
    /**
     *
     * @type {Array<PrescriptionMedicationInputModel>}
     * @memberof UpdatePrescriptionCommand
     */
    'prescriptionMedications'?: Array<PrescriptionMedicationInputModel> | null;
}
//# sourceMappingURL=update-prescription-command.d.ts.map