Packages

ISO/HL7 FHIR Application Server

Current section

Files

Jump to
hl7 include List.hrl
Raw

include/List.hrl

-ifndef(LIST_HL7).
-define(LIST_HL7, true).
-type listEmptyReason ::
nilknown | notasked | unavailable | notstarted | closed.
-type listCode() ::
examinations | diary | procedures | medications |
discharge_procedures | discharge_medications.
-record('List', {
id = [],
status = [],
mode = [],
title = [],
code = [],
subject = [],
encounter = [],
note = [],
orderedBy = [],
entryFlag = [],
entryDate = [],
entryItem = [],
emptyReason = []
}).
-endif.