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§

§readonly binaryPropertyName?: string

Default: "data"

§readonly body?: string

Body of the push

§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

§readonly filters?: { ... }

Default: {}

§readonly limit?: number

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

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

Default: "create"

§readonly pushId?: string
§readonly resource?: "push"

Default: "push"

§readonly returnAll?: boolean

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

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

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

§readonly title?: string

Title of the push

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

Default: "note"

§readonly url?: string

URL of the push

§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.