@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
179 lines (178 loc) • 4.69 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 GP2_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Revenue Code
*/
this.GP2_1 = {
index: 0,
identifier: "GP2_1",
description: "Revenue Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Number of Service Units
*/
this.GP2_2 = {
index: 1,
identifier: "GP2_2",
description: "Number of Service Units",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Charge
*/
this.GP2_3 = {
index: 2,
identifier: "GP2_3",
description: "Charge",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Reimbursement Action Code
*/
this.GP2_4 = {
index: 3,
identifier: "GP2_4",
description: "Reimbursement Action Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Denial or Rejection Code
*/
this.GP2_5 = {
index: 4,
identifier: "GP2_5",
description: "Denial or Rejection Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* OCE Edit Code
*/
this.GP2_6 = {
index: 5,
identifier: "GP2_6",
description: "OCE Edit Code",
length: undefined,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Ambulatory Payment Classification Code
*/
this.GP2_7 = {
index: 6,
identifier: "GP2_7",
description: "Ambulatory Payment Classification Code ",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Modifier Edit Code
*/
this.GP2_8 = {
index: 7,
identifier: "GP2_8",
description: "Modifier Edit Code",
length: undefined,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Payment Adjustment Code
*/
this.GP2_9 = {
index: 8,
identifier: "GP2_9",
description: "Payment Adjustment Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Packaging Status Code
*/
this.GP2_10 = {
index: 9,
identifier: "GP2_10",
description: "Packaging Status Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Expected CMS Payment Amount
*/
this.GP2_11 = {
index: 10,
identifier: "GP2_11",
description: "Expected CMS Payment Amount",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Reimbursement Type Code
*/
this.GP2_12 = {
index: 11,
identifier: "GP2_12",
description: "Reimbursement Type Code",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Co-Pay Amount
*/
this.GP2_13 = {
index: 12,
identifier: "GP2_13",
description: "Co-Pay Amount",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Pay Rate per Service Unit
*/
this.GP2_14 = {
index: 13,
identifier: "GP2_14",
description: "Pay Rate per Service Unit",
length: undefined,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = GP2_Fields;