@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 PDA_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Death Cause Code
*/
this.PDA_1 = {
index: 0,
identifier: "PDA_1",
description: "Death Cause Code",
length: 705,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Death Location
*/
this.PDA_2 = {
index: 1,
identifier: "PDA_2",
description: "Death Location",
length: 80,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Death Certified Indicator
*/
this.PDA_3 = {
index: 2,
identifier: "PDA_3",
description: "Death Certified Indicator",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Death Certificate Signed Date/Time
*/
this.PDA_4 = {
index: 3,
identifier: "PDA_4",
description: "Death Certificate Signed Date/Time",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Death Certified By
*/
this.PDA_5 = {
index: 4,
identifier: "PDA_5",
description: "Death Certified By",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Autopsy Indicator
*/
this.PDA_6 = {
index: 5,
identifier: "PDA_6",
description: "Autopsy Indicator",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Autopsy Start and End Date/Time
*/
this.PDA_7 = {
index: 6,
identifier: "PDA_7",
description: "Autopsy Start and End Date/Time",
length: 53,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Autopsy Performed By
*/
this.PDA_8 = {
index: 7,
identifier: "PDA_8",
description: "Autopsy Performed By",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Coroner Indicator
*/
this.PDA_9 = {
index: 8,
identifier: "PDA_9",
description: "Coroner Indicator",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = PDA_Fields;