@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
155 lines (154 loc) • 3.93 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 PRA_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Primary Key Value - PRA
*/
this.PRA_1 = {
index: 0,
identifier: "PRA_1",
description: "Primary Key Value - PRA",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Practitioner Group
*/
this.PRA_2 = {
index: 1,
identifier: "PRA_2",
description: "Practitioner Group",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Practitioner Category
*/
this.PRA_3 = {
index: 2,
identifier: "PRA_3",
description: "Practitioner Category",
length: 3,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Provider Billing
*/
this.PRA_4 = {
index: 3,
identifier: "PRA_4",
description: "Provider Billing",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Specialty
*/
this.PRA_5 = {
index: 4,
identifier: "PRA_5",
description: "Specialty",
length: 112,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Practitioner ID Numbers
*/
this.PRA_6 = {
index: 5,
identifier: "PRA_6",
description: "Practitioner ID Numbers",
length: 99,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Privileges
*/
this.PRA_7 = {
index: 6,
identifier: "PRA_7",
description: "Privileges",
length: 770,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Date Entered Practice
*/
this.PRA_8 = {
index: 7,
identifier: "PRA_8",
description: "Date Entered Practice",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Institution
*/
this.PRA_9 = {
index: 8,
identifier: "PRA_9",
description: "Institution",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Date Left Practice
*/
this.PRA_10 = {
index: 9,
identifier: "PRA_10",
description: "Date Left Practice",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Government Reimbursement Billing Eligibility
*/
this.PRA_11 = {
index: 10,
identifier: "PRA_11",
description: "Government Reimbursement Billing Eligibility",
length: 250,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Set ID - PRA
*/
this.PRA_12 = {
index: 11,
identifier: "PRA_12",
description: "Set ID - PRA",
length: 60,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = PRA_Fields;