featherbit UI
    Preparing search index...

    Interface NotificationEntry

    One logged notification.

    interface NotificationEntry {
        details?: string;
        id: string;
        message?: string;
        title: string;
        tone: NotificationTone;
        ts: number;
    }
    Index
    details?: string

    Full inspectable payload (e.g. the pretty-printed server error body).

    id: string

    Unique id (used as React key and for "open panel on this entry").

    message?: string

    Short detail line as shown on the toast (typically "<status>: <body>").

    title: string

    Headline, e.g. "Failed to save policy".

    ts: number

    Epoch milliseconds when the notification was raised.