@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class LCC_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Primary Key Value - LCC
*/
this.LCC_1 = {
index: 0,
identifier: "LCC_1",
description: "Primary Key Value - LCC",
length: 200,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Location Department
*/
this.LCC_2 = {
index: 1,
identifier: "LCC_2",
description: "Location Department",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Accommodation Type
*/
this.LCC_3 = {
index: 2,
identifier: "LCC_3",
description: "Accommodation Type",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Charge Code
*/
this.LCC_4 = {
index: 3,
identifier: "LCC_4",
description: "Charge Code",
length: 250,
isOptional: false,
isRepeatable: true,
value: "",
};
}
}
exports.default = LCC_Fields;