UNPKG

@dotbase/hl7-v2-message

Version:

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

203 lines (202 loc) 5.16 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: 26, 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: 60, 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: 60, 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: "", }; /** * Diagnosis / DRG priority */ this.DG1_15 = { index: 14, identifier: "DG1_15", description: "Diagnosis / DRG priority", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Diagnosing clinician */ this.DG1_16 = { index: 15, identifier: "DG1_16", description: "Diagnosing clinician", length: 60, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = DG1_Fields;