fhirtypes
Version:
19 lines (18 loc) • 756 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CarePlanIntentEnum = void 0;
/**
* @name CarePlanIntent
* @description Codes indicating the degree of authority/intentionality associated with a care plan.
* @description proposal | plan | order | option
* @see <a href="https://hl7.org/fhir/R4/valueset-care-plan-intent.html">CarePlanIntent</a>
* @version R4
* @author Roberto Araneda Espinoza
*/
var CarePlanIntentEnum;
(function (CarePlanIntentEnum) {
CarePlanIntentEnum["PROPOSAL"] = "proposal";
CarePlanIntentEnum["PLAN"] = "plan";
CarePlanIntentEnum["ORDER"] = "order";
CarePlanIntentEnum["OPTION"] = "option";
})(CarePlanIntentEnum || (exports.CarePlanIntentEnum = CarePlanIntentEnum = {}));