UNPKG

@dotbase/hl7-v2-message

Version:

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

143 lines (142 loc) 3.6 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class DRG_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Diagnostic Related Group */ this.DRG_1 = { index: 0, identifier: "DRG_1", description: "Diagnostic Related Group", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * DRG Assigned Date/Time */ this.DRG_2 = { index: 1, identifier: "DRG_2", description: "DRG Assigned Date/Time", length: 26, isOptional: true, isRepeatable: false, value: "", }; /** * DRG Approval Indicator */ this.DRG_3 = { index: 2, identifier: "DRG_3", description: "DRG Approval Indicator", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * DRG Grouper Review Code */ this.DRG_4 = { index: 3, identifier: "DRG_4", description: "DRG Grouper Review Code", length: 2, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier Type */ this.DRG_5 = { index: 4, identifier: "DRG_5", description: "Outlier Type", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier Days */ this.DRG_6 = { index: 5, identifier: "DRG_6", description: "Outlier Days", length: 3, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier Cost */ this.DRG_7 = { index: 6, identifier: "DRG_7", description: "Outlier Cost", length: 12, isOptional: true, isRepeatable: false, value: "", }; /** * DRG Payor */ this.DRG_8 = { index: 7, identifier: "DRG_8", description: "DRG Payor", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Outlier Reimbursement */ this.DRG_9 = { index: 8, identifier: "DRG_9", description: "Outlier Reimbursement", length: 9, isOptional: true, isRepeatable: false, value: "", }; /** * Confidential Indicator */ this.DRG_10 = { index: 9, identifier: "DRG_10", description: "Confidential Indicator", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * DRG Transfer Type */ this.DRG_11 = { index: 10, identifier: "DRG_11", description: "DRG Transfer Type", length: 21, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = DRG_Fields;