@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
155 lines (154 loc) • 3.92 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 LDP_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Primary Key Value - LDP
*/
this.LDP_1 = {
index: 0,
identifier: "LDP_1",
description: "Primary Key Value - LDP",
length: 200,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Location Department
*/
this.LDP_2 = {
index: 1,
identifier: "LDP_2",
description: "Location Department",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Location Service
*/
this.LDP_3 = {
index: 2,
identifier: "LDP_3",
description: "Location Service",
length: 3,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Specialty Type
*/
this.LDP_4 = {
index: 3,
identifier: "LDP_4",
description: "Specialty Type",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Valid Patient Classes
*/
this.LDP_5 = {
index: 4,
identifier: "LDP_5",
description: "Valid Patient Classes",
length: 1,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Active/Inactive Flag
*/
this.LDP_6 = {
index: 5,
identifier: "LDP_6",
description: "Active/Inactive Flag",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Activation Date LDP
*/
this.LDP_7 = {
index: 6,
identifier: "LDP_7",
description: "Activation Date LDP",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inactivation Date - LDP
*/
this.LDP_8 = {
index: 7,
identifier: "LDP_8",
description: "Inactivation Date - LDP",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Inactivated Reason
*/
this.LDP_9 = {
index: 8,
identifier: "LDP_9",
description: "Inactivated Reason",
length: 80,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Visiting Hours
*/
this.LDP_10 = {
index: 9,
identifier: "LDP_10",
description: "Visiting Hours",
length: 80,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Contact Phone
*/
this.LDP_11 = {
index: 10,
identifier: "LDP_11",
description: "Contact Phone",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Location Cost Center
*/
this.LDP_12 = {
index: 11,
identifier: "LDP_12",
description: "Location Cost Center",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = LDP_Fields;