UNPKG

@dotbase/hl7-v2-message

Version:

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

179 lines (178 loc) 4.54 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class DG1_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Set id - diagnosis */ this.DG1_1 = { index: 0, identifier: "DG1_1", description: "Set id - diagnosis", length: 4, isOptional: false, isRepeatable: false, value: "", }; /** * Diagnosis coding method */ this.DG1_2 = { index: 1, identifier: "DG1_2", description: "Diagnosis coding method", length: 2, isOptional: false, isRepeatable: false, value: "", }; /** * Diagnosis code */ this.DG1_3 = { index: 2, identifier: "DG1_3", description: "Diagnosis code", length: 8, isOptional: true, isRepeatable: false, value: "", }; /** * Diagnosis description */ this.DG1_4 = { index: 3, identifier: "DG1_4", description: "Diagnosis description", length: 40, isOptional: true, isRepeatable: false, value: "", }; /** * Diagnosis date/time */ this.DG1_5 = { index: 4, identifier: "DG1_5", description: "Diagnosis date/time", length: 19, isOptional: true, isRepeatable: false, value: "", }; /** * Diagnosis/drg type */ this.DG1_6 = { index: 5, identifier: "DG1_6", description: "Diagnosis/drg type", length: 2, isOptional: false, isRepeatable: false, value: "", }; /** * Major diagnostic category */ this.DG1_7 = { index: 6, identifier: "DG1_7", description: "Major diagnostic category", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Diagnostic related group */ this.DG1_8 = { index: 7, identifier: "DG1_8", description: "Diagnostic related group", length: 4, isOptional: true, isRepeatable: false, value: "", }; /** * Drg approval indicator */ this.DG1_9 = { index: 8, identifier: "DG1_9", description: "Drg approval indicator", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Drg grouper review code */ this.DG1_10 = { index: 9, identifier: "DG1_10", description: "Drg grouper review code", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier type */ this.DG1_11 = { index: 10, identifier: "DG1_11", description: "Outlier type", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier days */ this.DG1_12 = { index: 11, identifier: "DG1_12", description: "Outlier days", length: 3, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier cost */ this.DG1_13 = { index: 12, identifier: "DG1_13", description: "Outlier cost", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * Grouper version and type */ this.DG1_14 = { index: 13, identifier: "DG1_14", description: "Grouper version and type", length: 4, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = DG1_Fields;