UNPKG

fhirtypes

Version:
32 lines (31 loc) 1.34 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ItemTypeEnum = void 0; /** * @name ItemType * @description Distinguishes groups from questions and display text and indicates data type for questions. * @description group | display | question | boolean | decimal | integer | date | dateTime | time | string | text | url | choice | open-choice | attachment | reference | quantity * @see <a href="https://hl7.org/fhir/R4/valueset-item-type.html">ItemType</a> * @version R4 * @author Claudia Alarcón Lazo */ var ItemTypeEnum; (function (ItemTypeEnum) { ItemTypeEnum["GROUP"] = "group"; ItemTypeEnum["DISPLAY"] = "display"; ItemTypeEnum["QUESTION"] = "question"; ItemTypeEnum["BOOLEAN"] = "boolean"; ItemTypeEnum["DECIMAL"] = "decimal"; ItemTypeEnum["INTEGER"] = "integer"; ItemTypeEnum["DATE"] = "date"; ItemTypeEnum["DATE_TIME"] = "dateTime"; ItemTypeEnum["TIME"] = "time"; ItemTypeEnum["STRING"] = "string"; ItemTypeEnum["TEXT"] = "text"; ItemTypeEnum["URL"] = "url"; ItemTypeEnum["CHOICE"] = "choice"; ItemTypeEnum["OPEN_CHOICE"] = "open-choice"; ItemTypeEnum["ATTACHMENT"] = "attachment"; ItemTypeEnum["REFERENCE"] = "reference"; ItemTypeEnum["QUANTITY"] = "quantity"; })(ItemTypeEnum || (exports.ItemTypeEnum = ItemTypeEnum = {}));