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 additional Fields?: {
attachmentsUi?: {
attachmentsValues: { binaryPropertyName?: string };
};
device?: string;
html?: boolean;
sound?: string;
timestamp?: string;
title?: string;
url?: string;
url_title?: string;
}
readonly additional Fields?: {
attachmentsUi?: {
attachmentsValues: { binaryPropertyName?: string };
};
device?: string;
html?: boolean;
sound?: string;
timestamp?: string;
title?: string;
url?: string;
url_title?: string;
}
Source§readonly expire?: number
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 priority?: 0 | 1 | -1 | 2 | -2
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
Default: {}