fhirtypes
Version:
18 lines (17 loc) • 886 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AllergyIntoleranceSeverityEnum = void 0;
/**
* @name AllergyIntoleranceSeverity
* @description Clinical assessment of the severity of a reaction event as a whole, potentially considering multiple different manifestations.
* @description mild | moderate | severe
* @see <a href="https://hl7.org/fhir/R4/valueset-reaction-event-severity.html">AllergyIntoleranceSeverity</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
var AllergyIntoleranceSeverityEnum;
(function (AllergyIntoleranceSeverityEnum) {
AllergyIntoleranceSeverityEnum["MILD"] = "mild";
AllergyIntoleranceSeverityEnum["MODERATE"] = "moderate";
AllergyIntoleranceSeverityEnum["SEVERE"] = "severe";
})(AllergyIntoleranceSeverityEnum || (exports.AllergyIntoleranceSeverityEnum = AllergyIntoleranceSeverityEnum = {}));