Interface GotifyNodeParameters

Source
interface GotifyNodeParameters {
    additionalFields?: {
        priority?: number;
        title?: string;
    };
    limit?: number;
    message?: string;
    messageId?: string;
    operation?: "create"
    | "getAll"
    | "delete";
    options?: {
        contentType?: "text/plain" | "text/markdown";
    };
    resource?: "message";
    returnAll?: boolean;
}

Properties§

Source§

readonly additionalFields?: { priority?: number; title?: string }

Default: {}

Source§

readonly limit?: number

Max number of results to return Default: 20 Type options: {"minValue":1}

Source§

readonly message?: string

The message to send, If using Markdown add the Content Type option

Source§

readonly messageId?: string

Source§

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

Default: "create"

Source§

readonly options?: { contentType?: "text/plain" | "text/markdown" }

Default: {}

Source§

readonly resource?: "message"

Default: "message"

Source§

readonly returnAll?: boolean

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