@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.55 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class CM2_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID- CM2
*/
this.CM2_1 = {
index: 0,
identifier: "CM2_1",
description: "Set ID- CM2",
length: 4,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Scheduled Time Point
*/
this.CM2_2 = {
index: 1,
identifier: "CM2_2",
description: "Scheduled Time Point",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Description of Time Point
*/
this.CM2_3 = {
index: 2,
identifier: "CM2_3",
description: "Description of Time Point",
length: 300,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Events Scheduled This Time Point
*/
this.CM2_4 = {
index: 3,
identifier: "CM2_4",
description: "Events Scheduled This Time Point",
length: 250,
isOptional: false,
isRepeatable: true,
value: "",
};
}
}
exports.default = CM2_Fields;