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 additional Fields?: { ... }§
readonly limit?: numberMax number of results to return Default: 20 Type options: {"minValue":1}
readonly message?: stringThe message to send, If using Markdown add the Content Type option
readonly message Id?: string§readonly operation?: "create" | "getAll" | "delete"Default: "create"
readonly options?: { ... }Default: {}
readonly resource?: "message"Default: "message"
readonly return All?: booleanWhether to return all results or only up to a given limit
Default: {}