@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
83 lines (82 loc) • 2.32 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class PSG_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Provider Product/Service Group Number
*/
this.PSG_1 = {
index: 0,
identifier: "PSG_1",
description: "Provider Product/Service Group Number",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Payer Product/Service Group Number
*/
this.PSG_2 = {
index: 1,
identifier: "PSG_2",
description: "Payer Product/Service Group Number",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Product/Service Group Sequence Number
*/
this.PSG_3 = {
index: 2,
identifier: "PSG_3",
description: "Product/Service Group Sequence Number",
length: 4,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Adjudicate as Group
*/
this.PSG_4 = {
index: 3,
identifier: "PSG_4",
description: "Adjudicate as Group",
length: 1,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Product/Service Group Billed Amount
*/
this.PSG_5 = {
index: 4,
identifier: "PSG_5",
description: "Product/Service Group Billed Amount",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Product/Service Group Description
*/
this.PSG_6 = {
index: 5,
identifier: "PSG_6",
description: "Product/Service Group Description",
length: undefined,
isOptional: false,
isRepeatable: false,
value: "",
};
}
}
exports.default = PSG_Fields;