UNPKG

fhirtypes

Version:
10 lines (9 loc) 522 B
/** * @name TaskIntent * @description Distinguishes whether the task is a proposal, plan or full order. * @description unknown | proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option * @see <a href="https://hl7.org/fhir/R4/valueset-task-intent.html">TaskIntent</a> * @version R4 * @author Roberto Araneda Espinoza */ export type TaskIntentType = 'unknown' | 'proposal' | 'plan' | 'order' | 'original-order' | 'reflex-order' | 'filler-order' | 'instance-order' | 'option';