@dotbase/hl7-v2-message
Version:
Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.
29 lines (28 loc) • 570 B
TypeScript
import Hl7Fields from '../../../model/Hl7Fields';
import Hl7Field from '../../../model/Hl7Field';
export default class SFT_Fields extends Hl7Fields {
/**
* Software Vendor Organization
*/
SFT_1: Hl7Field;
/**
* Software Certified Version or Release Number
*/
SFT_2: Hl7Field;
/**
* Software Product Name
*/
SFT_3: Hl7Field;
/**
* Software Binary ID
*/
SFT_4: Hl7Field;
/**
* Software Product Information
*/
SFT_5: Hl7Field;
/**
* Software Install Date
*/
SFT_6: Hl7Field;
}