@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
155 lines (154 loc) • 3.97 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 FAC_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Facility ID-FAC
*/
this.FAC_1 = {
index: 0,
identifier: "FAC_1",
description: "Facility ID-FAC",
length: 20,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Facility Type
*/
this.FAC_2 = {
index: 1,
identifier: "FAC_2",
description: "Facility Type",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Facility Address
*/
this.FAC_3 = {
index: 2,
identifier: "FAC_3",
description: "Facility Address",
length: 250,
isOptional: false,
isRepeatable: true,
value: "",
};
/**
* Facility Telecommunication
*/
this.FAC_4 = {
index: 3,
identifier: "FAC_4",
description: "Facility Telecommunication",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Contact Person
*/
this.FAC_5 = {
index: 4,
identifier: "FAC_5",
description: "Contact Person",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Contact Title
*/
this.FAC_6 = {
index: 5,
identifier: "FAC_6",
description: "Contact Title",
length: 60,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Contact Address
*/
this.FAC_7 = {
index: 6,
identifier: "FAC_7",
description: "Contact Address",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Contact Telecommunication
*/
this.FAC_8 = {
index: 7,
identifier: "FAC_8",
description: "Contact Telecommunication",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Signature Authority
*/
this.FAC_9 = {
index: 8,
identifier: "FAC_9",
description: "Signature Authority",
length: 250,
isOptional: false,
isRepeatable: true,
value: "",
};
/**
* Signature Authority Title
*/
this.FAC_10 = {
index: 9,
identifier: "FAC_10",
description: "Signature Authority Title",
length: 60,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Signature Authority Address
*/
this.FAC_11 = {
index: 10,
identifier: "FAC_11",
description: "Signature Authority Address",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Signature Authority Telecommunication
*/
this.FAC_12 = {
index: 11,
identifier: "FAC_12",
description: "Signature Authority Telecommunication",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = FAC_Fields;