@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
311 lines (310 loc) • 8.06 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 PR1_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID - PR1
*/
this.PR1_1 = {
index: 0,
identifier: "PR1_1",
description: "Set ID - PR1",
length: 4,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Coding Method
*/
this.PR1_2 = {
index: 1,
identifier: "PR1_2",
description: "Procedure Coding Method",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Code
*/
this.PR1_3 = {
index: 2,
identifier: "PR1_3",
description: "Procedure Code",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Description
*/
this.PR1_4 = {
index: 3,
identifier: "PR1_4",
description: "Procedure Description",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Date/Time
*/
this.PR1_5 = {
index: 4,
identifier: "PR1_5",
description: "Procedure Date/Time",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Functional Type
*/
this.PR1_6 = {
index: 5,
identifier: "PR1_6",
description: "Procedure Functional Type",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Procedure Minutes
*/
this.PR1_7 = {
index: 6,
identifier: "PR1_7",
description: "Procedure Minutes",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Anesthesiologist
*/
this.PR1_8 = {
index: 7,
identifier: "PR1_8",
description: "Anesthesiologist",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Anesthesia Code
*/
this.PR1_9 = {
index: 8,
identifier: "PR1_9",
description: "Anesthesia Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Anesthesia Minutes
*/
this.PR1_10 = {
index: 9,
identifier: "PR1_10",
description: "Anesthesia Minutes",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Surgeon
*/
this.PR1_11 = {
index: 10,
identifier: "PR1_11",
description: "Surgeon",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Practitioner
*/
this.PR1_12 = {
index: 11,
identifier: "PR1_12",
description: "Procedure Practitioner ",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Consent Code
*/
this.PR1_13 = {
index: 12,
identifier: "PR1_13",
description: "Consent Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Procedure Priority
*/
this.PR1_14 = {
index: 13,
identifier: "PR1_14",
description: "Procedure Priority",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Associated Diagnosis Code
*/
this.PR1_15 = {
index: 14,
identifier: "PR1_15",
description: "Associated Diagnosis Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Procedure Code Modifier
*/
this.PR1_16 = {
index: 15,
identifier: "PR1_16",
description: "Procedure Code Modifier",
length: undefined,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Procedure DRG Type
*/
this.PR1_17 = {
index: 16,
identifier: "PR1_17",
description: "Procedure DRG Type",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Tissue Type Code
*/
this.PR1_18 = {
index: 17,
identifier: "PR1_18",
description: "Tissue Type Code",
length: undefined,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Procedure Identifier
*/
this.PR1_19 = {
index: 18,
identifier: "PR1_19",
description: "Procedure Identifier",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Procedure Action Code
*/
this.PR1_20 = {
index: 19,
identifier: "PR1_20",
description: "Procedure Action Code",
length: 1,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* DRG Procedure Determination Status
*/
this.PR1_21 = {
index: 20,
identifier: "PR1_21",
description: "DRG Procedure Determination Status ",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* DRG Procedure Relevance
*/
this.PR1_22 = {
index: 21,
identifier: "PR1_22",
description: "DRG Procedure Relevance",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Treating Organizational Unit
*/
this.PR1_23 = {
index: 22,
identifier: "PR1_23",
description: "Treating Organizational Unit",
length: undefined,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Respiratory Within Surgery
*/
this.PR1_24 = {
index: 23,
identifier: "PR1_24",
description: "Respiratory Within Surgery",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Parent Procedure ID
*/
this.PR1_25 = {
index: 24,
identifier: "PR1_25",
description: "Parent Procedure ID",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = PR1_Fields;