UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

73 lines (72 loc) 1.19 kB
import Hl7Fields from '../../../model/Hl7Fields'; import Hl7Field from '../../../model/Hl7Field'; export default class MSH_Fields extends Hl7Fields { /** * Field Separator */ MSH_1: Hl7Field; /** * Encoding characters */ MSH_2: Hl7Field; /** * Sending application */ MSH_3: Hl7Field; /** * Sending facility */ MSH_4: Hl7Field; /** * Receiving application */ MSH_5: Hl7Field; /** * Receiving facility */ MSH_6: Hl7Field; /** * Date / Time of message */ MSH_7: Hl7Field; /** * Security */ MSH_8: Hl7Field; /** * Message type */ MSH_9: Hl7Field; /** * Message Control ID */ MSH_10: Hl7Field; /** * Processing ID */ MSH_11: Hl7Field; /** * Version ID */ MSH_12: Hl7Field; /** * Sequence number */ MSH_13: Hl7Field; /** * Continuation pointer */ MSH_14: Hl7Field; /** * Accept acknowledgement type */ MSH_15: Hl7Field; /** * Application acknowledgement type */ MSH_16: Hl7Field; /** * Country code */ MSH_17: Hl7Field; }