UNPKG

@dotbase/hl7-v2-message

Version:

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

119 lines (118 loc) 2.95 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields")); class NSC_Fields extends Hl7Fields_1.default { constructor() { super(...arguments); /** * Network Change Type */ this.NSC_1 = { index: 0, identifier: "NSC_1", description: "Network Change Type", length: 4, isOptional: false, isRepeatable: false, value: "", }; /** * Current CPU */ this.NSC_2 = { index: 1, identifier: "NSC_2", description: "Current CPU", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * Current Fileserver */ this.NSC_3 = { index: 2, identifier: "NSC_3", description: "Current Fileserver", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * Current Application */ this.NSC_4 = { index: 3, identifier: "NSC_4", description: "Current Application", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * Current Facility */ this.NSC_5 = { index: 4, identifier: "NSC_5", description: "Current Facility", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * New CPU */ this.NSC_6 = { index: 5, identifier: "NSC_6", description: "New CPU", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * New Fileserver */ this.NSC_7 = { index: 6, identifier: "NSC_7", description: "New Fileserver", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * New Application */ this.NSC_8 = { index: 7, identifier: "NSC_8", description: "New Application", length: 30, isOptional: true, isRepeatable: false, value: "", }; /** * New Facility */ this.NSC_9 = { index: 8, identifier: "NSC_9", description: "New Facility", length: 30, isOptional: true, isRepeatable: false, value: "", }; } } exports.default = NSC_Fields;