fhirtypes
Version:
15 lines (14 loc) • 457 B
TypeScript
/**
* @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
*/
export declare enum CarePlanIntentEnum {
PROPOSAL = "proposal",
PLAN = "plan",
ORDER = "order",
OPTION = "option"
}