@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
71 lines (70 loc) • 1.82 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class VND_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Set Id – VND
*/
this.VND_1 = {
index: 0,
identifier: "VND_1",
description: "Set Id – VND",
length: 2,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Vendor Identifier
*/
this.VND_2 = {
index: 1,
identifier: "VND_2",
description: "Vendor Identifier",
length: 250,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Vendor Name
*/
this.VND_3 = {
index: 2,
identifier: "VND_3",
description: "Vendor Name",
length: 999,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Vendor Catalog Number
*/
this.VND_4 = {
index: 3,
identifier: "VND_4",
description: "Vendor Catalog Number",
length: 20,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Primary Vendor Indicator
*/
this.VND_5 = {
index: 4,
identifier: "VND_5",
description: "Primary Vendor Indicator",
length: 1,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = VND_Fields;