interface PushbulletNodeParameters {
binaryPropertyName?: string;
body?: string;
dismissed?: boolean;
filters?: { active?: boolean; modified_after?: string };
limit?: number;
operation?: "create" | "getAll" | "update" | "delete";
pushId?: string;
resource?: "push";
returnAll?: boolean;
target?:
| "email"
| "default"
| "channel_tag"
| "device_iden";
title?: string;
type?: "file"
| "link"
| "note";
url?: string;
value?: string;
}
Properties§
Source§readonly dismissed?: boolean
readonly dismissed?: boolean
Whether to mark a push as having been dismissed by the user, will cause any notifications for the push to be hidden if possible
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}
Default: "data"