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§
§§§§§§§
readonly additional Fields?: { ... }§
readonly expire?: numberSpecifies how many seconds your notification will continue to be retried for (every retry seconds) Default: 30 Type options: {"minValue":0,"maxValue":10800}
readonly message?: stringYour message
readonly operation?: "push"Default: "push"
readonly priority?: 0 | 1 | -1 | 2 | -2Send 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
readonly resource?: "message"Default: "message"
readonly retry?: numberSpecifies 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}
readonly user Key?: string
Default: {}