pushover-notification - v1.0.3
    Preparing search index...

    Interface NotificationData

    NotificationData

    Extended notification tracking structure

    Benachrichtigungsverfolgung

    Pushover Status

    const notification: NotificationData = {
    id: 'notif_12345',
    title: 'Backup Complete',
    message: 'Nightly backup succeeded',
    recipient: 'team-alerts',
    read: false,
    createdAt: '2023-07-20T03:45:00Z',
    pushoverSent: true,
    pushoverReceipt: 'r1234567890'
    };
    interface NotificationData {
        createdAt: string;
        id: string;
        message: string;
        read: boolean;
        recipient: string;
        title: string;
        pushoverReceipt?: null | string;
        pushoverSent?: boolean;
    }
    Index

    Properties

    createdAt: string

    ISO 8601 creation timestamp

    id: string

    Unique notification ID

    message: string

    Notification content

    read: boolean

    Read status flag

    recipient: string

    Target user/group

    title: string

    Notification title

    pushoverReceipt?: null | string

    Pushover receipt ID for priority messages

    pushoverSent?: boolean

    Pushover delivery confirmation