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§

§readonly additionalFields?: { ... }

Default: {}

§readonly limit?: number

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

§readonly message?: string

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

§readonly messageId?: string
§readonly operation?: "create" | "getAll" | "delete"

Default: "create"

§readonly options?: { ... }

Default: {}

§readonly resource?: "message"

Default: "message"

§readonly returnAll?: boolean

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