ClientNotification: Message<"meshtastic.ClientNotification"> & {
    level: LogRecord_Level;
    message: string;
    replyId?: number;
    time: number;
}

A notification message from the device to the client To be used for important messages that should to be displayed to the user in the form of push notifications or validation messages when saving invalid configuration.

Type declaration

  • level: LogRecord_Level

    The level type of notification

    from field: meshtastic.LogRecord.Level level = 3;

  • message: string

    The message body of the notification

    from field: string message = 4;

  • OptionalreplyId?: number

    The id of the packet we're notifying in response to

    from field: optional uint32 reply_id = 1;

  • time: number

    Seconds since 1970 - or 0 for unknown/unset

    from field: fixed32 time = 2;

from message meshtastic.ClientNotification