@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
287 lines (286 loc) • 7.23 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 UB1_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID - UB1
*/
this.UB1_1 = {
index: 0,
identifier: "UB1_1",
description: "Set ID - UB1",
length: 4,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Blood Deductible
*/
this.UB1_2 = {
index: 1,
identifier: "UB1_2",
description: "Blood Deductible",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Blood Furnished-Pints Of
*/
this.UB1_3 = {
index: 2,
identifier: "UB1_3",
description: "Blood Furnished-Pints Of",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Blood Replaced-Pints
*/
this.UB1_4 = {
index: 3,
identifier: "UB1_4",
description: "Blood Replaced-Pints",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Blood Not Replaced-Pints
*/
this.UB1_5 = {
index: 4,
identifier: "UB1_5",
description: "Blood Not Replaced-Pints",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Co-Insurance Days
*/
this.UB1_6 = {
index: 5,
identifier: "UB1_6",
description: "Co-Insurance Days",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Condition Code
*/
this.UB1_7 = {
index: 6,
identifier: "UB1_7",
description: "Condition Code",
length: 14,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Covered Days -
*/
this.UB1_8 = {
index: 7,
identifier: "UB1_8",
description: "Covered Days -",
length: 3,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Non Covered Days -
*/
this.UB1_9 = {
index: 8,
identifier: "UB1_9",
description: "Non Covered Days -",
length: 3,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Value Amount and Code
*/
this.UB1_10 = {
index: 9,
identifier: "UB1_10",
description: "Value Amount and Code",
length: 41,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Number Of Grace Days
*/
this.UB1_11 = {
index: 10,
identifier: "UB1_11",
description: "Number Of Grace Days",
length: 2,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Special Program Indicator
*/
this.UB1_12 = {
index: 11,
identifier: "UB1_12",
description: "Special Program Indicator",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* PSRO/UR Approval Indicator
*/
this.UB1_13 = {
index: 12,
identifier: "UB1_13",
description: "PSRO/UR Approval Indicator",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* PSRO/UR Approved Stay-Fm
*/
this.UB1_14 = {
index: 13,
identifier: "UB1_14",
description: "PSRO/UR Approved Stay-Fm",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* PSRO/UR Approved Stay-To
*/
this.UB1_15 = {
index: 14,
identifier: "UB1_15",
description: "PSRO/UR Approved Stay-To",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Occurrence
*/
this.UB1_16 = {
index: 15,
identifier: "UB1_16",
description: "Occurrence",
length: 259,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Occurrence Span
*/
this.UB1_17 = {
index: 16,
identifier: "UB1_17",
description: "Occurrence Span",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Occur Span Start Date
*/
this.UB1_18 = {
index: 17,
identifier: "UB1_18",
description: "Occur Span Start Date",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Occur Span End Date
*/
this.UB1_19 = {
index: 18,
identifier: "UB1_19",
description: "Occur Span End Date",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* UB-82 Locator 2
*/
this.UB1_20 = {
index: 19,
identifier: "UB1_20",
description: "UB-82 Locator 2",
length: 30,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* UB-82 Locator 9
*/
this.UB1_21 = {
index: 20,
identifier: "UB1_21",
description: "UB-82 Locator 9",
length: 7,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* UB-82 Locator 27
*/
this.UB1_22 = {
index: 21,
identifier: "UB1_22",
description: "UB-82 Locator 27",
length: 8,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* UB-82 Locator 45
*/
this.UB1_23 = {
index: 22,
identifier: "UB1_23",
description: "UB-82 Locator 45",
length: 17,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = UB1_Fields;