@micham/iso8583
    Preparing search index...

    Type Alias Message<FD>

    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 Message<FD extends FieldDefinition> = {
        bitmap: Bitmap;
        content: Partial<ParseFieldDefinition<FD>>;
        definition: MessageDefinition<FD>;
        mti: number;
        show: () => string;
    }

    Type Parameters

    Index

    Properties

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