@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
47 lines (46 loc) • 1.24 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class CM1_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID - CM1
*/
this.CM1_1 = {
index: 0,
identifier: "CM1_1",
description: "Set ID - CM1",
length: 4,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Study Phase Identifier
*/
this.CM1_2 = {
index: 1,
identifier: "CM1_2",
description: "Study Phase Identifier",
length: 60,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Description of Study Phase
*/
this.CM1_3 = {
index: 2,
identifier: "CM1_3",
description: "Description of Study Phase",
length: 300,
isOptional: false,
isRepeatable: false,
value: "",
};
}
}
exports.default = CM1_Fields;