UNPKG

@dotbase/hl7-v2-message

Version:

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

311 lines (310 loc) 7.96 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class IN3_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Set ID - IN3 */ this.IN3_1 = { index: 0, identifier: "IN3_1", description: "Set ID - IN3", length: 4, isOptional: false, isRepeatable: false, value: "", }; /** * Certification Number */ this.IN3_2 = { index: 1, identifier: "IN3_2", description: "Certification Number", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Certified By */ this.IN3_3 = { index: 2, identifier: "IN3_3", description: "Certified By", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Certification Required */ this.IN3_4 = { index: 3, identifier: "IN3_4", description: "Certification Required", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Penalty */ this.IN3_5 = { index: 4, identifier: "IN3_5", description: "Penalty", length: 23, isOptional: true, isRepeatable: false, value: "", }; /** * Certification Date/Time */ this.IN3_6 = { index: 5, identifier: "IN3_6", description: "Certification Date/Time", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Certification Modify Date/Time */ this.IN3_7 = { index: 6, identifier: "IN3_7", description: "Certification Modify Date/Time", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Operator */ this.IN3_8 = { index: 7, identifier: "IN3_8", description: "Operator", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Certification Begin Date */ this.IN3_9 = { index: 8, identifier: "IN3_9", description: "Certification Begin Date", length: 8, isOptional: true, isRepeatable: false, value: "", }; /** * Certification End Date */ this.IN3_10 = { index: 9, identifier: "IN3_10", description: "Certification End Date", length: 8, isOptional: true, isRepeatable: false, value: "", }; /** * Days */ this.IN3_11 = { index: 10, identifier: "IN3_11", description: "Days", length: 6, isOptional: true, isRepeatable: false, value: "", }; /** * Non-Concur Code/Description */ this.IN3_12 = { index: 11, identifier: "IN3_12", description: "Non-Concur Code/Description", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Non-Concur Effective Date/Time */ this.IN3_13 = { index: 12, identifier: "IN3_13", description: "Non-Concur Effective Date/Time", length: 24, isOptional: true, isRepeatable: false, value: "", }; /** * Physician Reviewer */ this.IN3_14 = { index: 13, identifier: "IN3_14", description: "Physician Reviewer", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Certification Contact */ this.IN3_15 = { index: 14, identifier: "IN3_15", description: "Certification Contact", length: 48, isOptional: true, isRepeatable: false, value: "", }; /** * Certification Contact Phone Number */ this.IN3_16 = { index: 15, identifier: "IN3_16", description: "Certification Contact Phone Number", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Appeal Reason */ this.IN3_17 = { index: 16, identifier: "IN3_17", description: "Appeal Reason", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Certification Agency */ this.IN3_18 = { index: 17, identifier: "IN3_18", description: "Certification Agency", length: 250, isOptional: true, isRepeatable: false, value: "", }; /** * Certification Agency Phone Number */ this.IN3_19 = { index: 18, identifier: "IN3_19", description: "Certification Agency Phone Number", length: 250, isOptional: true, isRepeatable: true, value: "", }; /** * Pre-Certification Requirement */ this.IN3_20 = { index: 19, identifier: "IN3_20", description: "Pre-Certification Requirement", length: 40, isOptional: true, isRepeatable: true, value: "", }; /** * Case Manager */ this.IN3_21 = { index: 20, identifier: "IN3_21", description: "Case Manager", length: 48, isOptional: true, isRepeatable: false, value: "", }; /** * Second Opinion Date */ this.IN3_22 = { index: 21, identifier: "IN3_22", description: "Second Opinion Date", length: 8, isOptional: true, isRepeatable: false, value: "", }; /** * Second Opinion Status */ this.IN3_23 = { index: 22, identifier: "IN3_23", description: "Second Opinion Status", length: 1, isOptional: true, isRepeatable: false, value: "", }; /** * Second Opinion Documentation Received */ this.IN3_24 = { index: 23, identifier: "IN3_24", description: "Second Opinion Documentation Received", length: 1, isOptional: true, isRepeatable: true, value: "", }; /** * Second Opinion Physician */ this.IN3_25 = { index: 24, identifier: "IN3_25", description: "Second Opinion Physician", length: 250, isOptional: true, isRepeatable: true, value: "", }; } } exports.default = IN3_Fields;