@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
71 lines (70 loc) • 1.88 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class LCH_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Primary Key Value - LCH
*/
this.LCH_1 = {
index: 0,
identifier: "LCH_1",
description: "Primary Key Value - LCH",
length: 200,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Segment Action Code
*/
this.LCH_2 = {
index: 1,
identifier: "LCH_2",
description: "Segment Action Code",
length: 3,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Segment Unique Key
*/
this.LCH_3 = {
index: 2,
identifier: "LCH_3",
description: "Segment Unique Key",
length: 80,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Location Characteristic ID
*/
this.LCH_4 = {
index: 3,
identifier: "LCH_4",
description: "Location Characteristic ID",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Location Characteristic Value-LCH
*/
this.LCH_5 = {
index: 4,
identifier: "LCH_5",
description: "Location Characteristic Value-LCH",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
}
}
exports.default = LCH_Fields;