Interface PushoverNodeParameters

Source
interface PushoverNodeParameters {
    additionalFields?: {
        attachmentsUi?: {
            attachmentsValues: { binaryPropertyName?: string };
        };
        device?: string;
        html?: boolean;
        sound?: string;
        timestamp?: string;
        title?: string;
        url?: string;
        url_title?: string;
    };
    expire?: number;
    message?: string;
    operation?: "push";
    priority?: 0
    | 1
    | -1
    | 2
    | -2;
    resource?: "message";
    retry?: number;
    userKey?: string;
}

Properties§

Source§

readonly additionalFields?: {
    attachmentsUi?: {
        attachmentsValues: { binaryPropertyName?: string };
    };
    device?: string;
    html?: boolean;
    sound?: string;
    timestamp?: string;
    title?: string;
    url?: string;
    url_title?: string;
}

Default: {}

Source§

readonly expire?: number

Specifies how many seconds your notification will continue to be retried for (every retry seconds) Default: 30 Type options: {"minValue":0,"maxValue":10800}

Source§

readonly message?: string

Your message

Source§

readonly operation?: "push"

Default: "push"

Source§

readonly priority?: 0 | 1 | -1 | 2 | -2

Send as -2 to generate no notification/alert, -1 to always send as a quiet notification, 1 to display as high-priority and bypass the user's quiet hours, or 2 to also require confirmation from the user Default: -2

Source§

readonly resource?: "message"

Default: "message"

Source§

readonly retry?: number

Specifies how often (in seconds) the Pushover servers will send the same notification to the user. This parameter must have a value of at least 30 seconds between retries. Default: 30 Type options: {"minValue":0}

Source§

readonly userKey?: string

The user/group key (not e-mail address) of your user (or you), viewable when logged into the dashboard (often referred to as USER_KEY in the libraries and code examples)