@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
83 lines (82 loc) • 2.23 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const Hl7Fields_1 = tslib_1.__importDefault(require("../../../model/Hl7Fields"));
class SFT_Fields extends Hl7Fields_1.default {
constructor() {
super(...arguments);
/**
* Software Vendor Organization
*/
this.SFT_1 = {
index: 0,
identifier: "SFT_1",
description: "Software Vendor Organization",
length: 567,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Software Certified Version or Release Number
*/
this.SFT_2 = {
index: 1,
identifier: "SFT_2",
description: "Software Certified Version or Release Number",
length: 15,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Software Product Name
*/
this.SFT_3 = {
index: 2,
identifier: "SFT_3",
description: "Software Product Name",
length: 20,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Software Binary ID
*/
this.SFT_4 = {
index: 3,
identifier: "SFT_4",
description: "Software Binary ID",
length: 20,
isOptional: false,
isRepeatable: false,
value: "",
};
/**
* Software Product Information
*/
this.SFT_5 = {
index: 4,
identifier: "SFT_5",
description: "Software Product Information",
length: 1024,
isOptional: true,
isRepeatable: false,
value: "",
};
/**
* Software Install Date
*/
this.SFT_6 = {
index: 5,
identifier: "SFT_6",
description: "Software Install Date",
length: 24,
isOptional: true,
isRepeatable: false,
value: "",
};
}
}
exports.default = SFT_Fields;