@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
59 lines (58 loc) • 1.48 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class BLG_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* When to Charge
*/
this.BLG_1 = {
index: 0,
identifier: "BLG_1",
description: "When to Charge",
length: 40,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Charge Type
*/
this.BLG_2 = {
index: 1,
identifier: "BLG_2",
description: "Charge Type",
length: 50,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Account ID
*/
this.BLG_3 = {
index: 2,
identifier: "BLG_3",
description: "Account ID",
length: 100,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Charge Type Reason
*/
this.BLG_4 = {
index: 3,
identifier: "BLG_4",
description: "Charge Type Reason",
length: 60,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = BLG_Fields;