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

    Interface PushoverMessage

    PushoverMessage

    Core notification message structure

    Pushover Nachricht

    Benachrichtigungsinhalt

    const alert: PushoverMessage = {
    message: 'Server CPU at 95% load',
    title: 'High Resource Alert',
    priority: 1,
    sound: 'siren'
    };
    interface PushoverMessage {
        message: string;
        title: string;
        priority?: number;
        sound?: string;
        timestamp?: number;
    }
    Index

    Properties

    message: string

    The message body (required, 1024 chars max)

    title: string

    Message title (250 chars max)

    priority?: number

    Priority (-2 to 2, default 0)

    sound?: string

    Notification sound (see Pushover sound list)

    timestamp?: number

    UNIX timestamp for message dating