UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

95 lines (94 loc) 2.64 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class OM3_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Sequence Number - Test/Observation Master File */ this.OM3_1 = { index: 0, identifier: "OM3_1", description: "Sequence Number - Test/Observation Master File", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Preferred Coding System */ this.OM3_2 = { index: 1, identifier: "OM3_2", description: "Preferred Coding System", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Valid Coded Answers */ this.OM3_3 = { index: 2, identifier: "OM3_3", description: "Valid Coded Answers", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Normal Text/Codes for Categorical Observations */ this.OM3_4 = { index: 3, identifier: "OM3_4", description: "Normal Text/Codes for Categorical Observations", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Abnormal Text/Codes for Categorical Observations */ this.OM3_5 = { index: 4, identifier: "OM3_5", description: "Abnormal Text/Codes for Categorical Observations", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Critical Text/Codes for Categorical Observations */ this.OM3_6 = { index: 5, identifier: "OM3_6", description: "Critical Text/Codes for Categorical Observations", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Value Type */ this.OM3_7 = { index: 6, identifier: "OM3_7", description: "Value Type", length: 3, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = OM3_Fields;