@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
119 lines (118 loc) • 3.07 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class EDU_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID _ EDU
*/
this.EDU_1 = {
index: 0,
identifier: "EDU_1",
description: "Set ID _ EDU",
length: 60,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Academic Degree
*/
this.EDU_2 = {
index: 1,
identifier: "EDU_2",
description: "Academic Degree",
length: 10,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Academic Degree Program Date Range
*/
this.EDU_3 = {
index: 2,
identifier: "EDU_3",
description: "Academic Degree Program Date Range",
length: 52,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Academic Degree Program Participation Date Range
*/
this.EDU_4 = {
index: 3,
identifier: "EDU_4",
description: "Academic Degree Program Participation Date Range",
length: 52,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Academic Degree Granted Date
*/
this.EDU_5 = {
index: 4,
identifier: "EDU_5",
description: "Academic Degree Granted Date",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* School
*/
this.EDU_6 = {
index: 5,
identifier: "EDU_6",
description: "School",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* School Type Code
*/
this.EDU_7 = {
index: 6,
identifier: "EDU_7",
description: "School Type Code",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* School Address
*/
this.EDU_8 = {
index: 7,
identifier: "EDU_8",
description: "School Address",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Major Field of Study
*/
this.EDU_9 = {
index: 8,
identifier: "EDU_9",
description: "Major Field of Study",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
}
}
exports.default = EDU_Fields;