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;