@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
155 lines (154 loc) • 3.9 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 AIL_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set ID - AIL
*/
this.AIL_1 = {
index: 0,
identifier: "AIL_1",
description: "Set ID - AIL",
length: 4,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Segment Action Code
*/
this.AIL_2 = {
index: 1,
identifier: "AIL_2",
description: "Segment Action Code",
length: 3,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Location Resource ID
*/
this.AIL_3 = {
index: 2,
identifier: "AIL_3",
description: "Location Resource ID",
length: 80,
isOptional: true,
isRepeatable: true,
value: "",
};
/**
* Location Type-AIL
*/
this.AIL_4 = {
index: 3,
identifier: "AIL_4",
description: "Location Type-AIL",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Location Group
*/
this.AIL_5 = {
index: 4,
identifier: "AIL_5",
description: "Location Group",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Start Date/Time
*/
this.AIL_6 = {
index: 5,
identifier: "AIL_6",
description: "Start Date/Time",
length: 26,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Start Date/Time Offset
*/
this.AIL_7 = {
index: 6,
identifier: "AIL_7",
description: "Start Date/Time Offset",
length: 20,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Start Date/Time Offset Units
*/
this.AIL_8 = {
index: 7,
identifier: "AIL_8",
description: "Start Date/Time Offset Units",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Duration
*/
this.AIL_9 = {
index: 8,
identifier: "AIL_9",
description: "Duration",
length: 20,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Duration Units
*/
this.AIL_10 = {
index: 9,
identifier: "AIL_10",
description: "Duration Units",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Allow Substitution Code
*/
this.AIL_11 = {
index: 10,
identifier: "AIL_11",
description: "Allow Substitution Code",
length: 10,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Filler Status Code
*/
this.AIL_12 = {
index: 11,
identifier: "AIL_12",
description: "Filler Status Code",
length: 250,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = AIL_Fields;