Type alias Message<FD>

Message<FD>: {
    bitmap: Bitmap;
    content: Partial<ParseFieldDefinition<FD>>;
    definition: MessageDefinition<FD>;
    mti: number;
    show: (() => string);
}

A Message represents a ISO message once parsed, consisting of a MessageDefinition, an MTI (Message Type Indicator), a bitmap indicating which fields are present in the message, a content object with the actual field values, and a show method for displaying the message in a human-readable format.

Type Parameters

Type declaration

Generated using TypeDoc