fhirtypes
Version:
17 lines (16 loc) • 750 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AllergyIntoleranceTypeEnum = void 0;
/**
* @name AllergyIntoleranceType
* @description Identification of the underlying physiological mechanism for a Reaction Risk.
* @description allergy | intolerance
* @see <a href="https://hl7.org/fhir/R4/valueset-allergy-intolerance-type.html">AllergyIntoleranceType</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
var AllergyIntoleranceTypeEnum;
(function (AllergyIntoleranceTypeEnum) {
AllergyIntoleranceTypeEnum["ALLERGY"] = "allergy";
AllergyIntoleranceTypeEnum["INTOLERANCE"] = "intolerance";
})(AllergyIntoleranceTypeEnum || (exports.AllergyIntoleranceTypeEnum = AllergyIntoleranceTypeEnum = {}));