@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.57 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class NDS_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Notification Reference Number
*/
this.NDS_1 = {
index: 0,
identifier: "NDS_1",
description: "Notification Reference Number",
length: 20,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Notification Date/Time
*/
this.NDS_2 = {
index: 1,
identifier: "NDS_2",
description: "Notification Date/Time",
length: 24,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Notification Alert Severity
*/
this.NDS_3 = {
index: 2,
identifier: "NDS_3",
description: "Notification Alert Severity",
length: 705,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Notification Code
*/
this.NDS_4 = {
index: 3,
identifier: "NDS_4",
description: "Notification Code",
length: 705,
isOptional: false,
isRepeatable: false,
value: "",
};
}
}
exports.default = NDS_Fields;