Interface PushbulletNodeParameters

Source
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 binaryPropertyName?: string

Default: "data"

Source§

readonly body?: string

Body of the push

Source§

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 filters?: { active?: boolean; modified_after?: string }

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":500}

Source§

readonly operation?: "create" | "getAll" | "update" | "delete"

Default: "create"

Source§

readonly pushId?: string

Source§

readonly resource?: "push"

Default: "push"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly target?: "email" | "default" | "channel_tag" | "device_iden"

Define the medium that will be used to send the push Default: "default"

Source§

readonly title?: string

Title of the push

Source§

readonly type?: "file" | "link" | "note"

Default: "note"

Source§

readonly url?: string

URL of the push

Source§

readonly value?: string

The value to be set depending on the target selected. For example, if the target selected is email then this field would take the email address of the person you are trying to send the push to.