@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
71 lines (70 loc) • 1.87 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class OVR_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Business Rule Override Type
*/
this.OVR_1 = {
index: 0,
identifier: "OVR_1",
description: "Business Rule Override Type",
length: 705,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Business Rule Override Code
*/
this.OVR_2 = {
index: 1,
identifier: "OVR_2",
description: "Business Rule Override Code",
length: 705,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Override Comments
*/
this.OVR_3 = {
index: 2,
identifier: "OVR_3",
description: "Override Comments",
length: 200,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Override Entered By
*/
this.OVR_4 = {
index: 3,
identifier: "OVR_4",
description: "Override Entered By",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Override Authorized By
*/
this.OVR_5 = {
index: 4,
identifier: "OVR_5",
description: "Override Authorized By",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = OVR_Fields;