fhirtypes
Version:
18 lines (17 loc) • 914 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AllergyIntoleranceCriticalityEnum = void 0;
/**
* @name AllergyIntoleranceCriticality
* @description Estimate of the potential clinical harm, or seriousness, of a reaction to an identified substance.
* @description low | high | unable-to-assess
* @see <a href="https://hl7.org/fhir/R4/valueset-allergy-intolerance-criticality.html">AllergyIntoleranceCriticality</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
var AllergyIntoleranceCriticalityEnum;
(function (AllergyIntoleranceCriticalityEnum) {
AllergyIntoleranceCriticalityEnum["LOW"] = "low";
AllergyIntoleranceCriticalityEnum["HIGH"] = "high";
AllergyIntoleranceCriticalityEnum["UNABLE_TO_ASSESS"] = "unable-to-assess";
})(AllergyIntoleranceCriticalityEnum || (exports.AllergyIntoleranceCriticalityEnum = AllergyIntoleranceCriticalityEnum = {}));