UNPKG

fhirtypes

Version:
23 lines (22 loc) 1.15 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MedicationRequestIntentEnum = void 0; /** * @name MedicationRequestIntent * @description MedicationRequest Intent Codes. * @description proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option * @see <a href="https://hl7.org/fhir/R4/valueset-medicationrequest-intent.html">MedicationRequestIntent</a> * @version R4 * @author Claudia Alarcón Lazo */ var MedicationRequestIntentEnum; (function (MedicationRequestIntentEnum) { MedicationRequestIntentEnum["PROPOSAL"] = "proposal"; MedicationRequestIntentEnum["PLAN"] = "plan"; MedicationRequestIntentEnum["ORDER"] = "order"; MedicationRequestIntentEnum["ORIGINAL_ORDER"] = "original-order"; MedicationRequestIntentEnum["REFLEX_ORDER"] = "reflex-order"; MedicationRequestIntentEnum["FILLER_ORDER"] = "filler-order"; MedicationRequestIntentEnum["INSTANCE_ORDER"] = "instance-order"; MedicationRequestIntentEnum["OPTION"] = "option"; })(MedicationRequestIntentEnum || (exports.MedicationRequestIntentEnum = MedicationRequestIntentEnum = {}));