Marmot-TS
    Preparing search index...

    Interface MarmotGroupComponentInfo

    Raw and decoded details for one app component in the MLS app_data_dictionary.

    interface MarmotGroupComponentInfo {
        dataHex: string;
        dataLength: number;
        decoded?: MarmotGroupDecodedComponent;
        decodeError?: string;
        id: number;
        idHex: string;
        name: string;
    }
    Index

    Core - Client State

    dataHex: string

    Raw component data as hex for protocol debugging.

    dataLength: number

    Raw component data byte length.

    Decoded known component payload. Omitted when the component is unknown or invalid.

    decodeError?: string

    Decode failure for a known component.

    id: number

    Numeric MLS ComponentID.

    idHex: string

    Hex ComponentID, padded to uint16 width for display.

    name: string

    Known Marmot component name, or unknown for unrecognized ids.