interface TelegramNotificationRuleBase {
    disableWebPagePreview?: boolean;
    messageTemplate: string;
    parseMode?: "MarkdownV2" | "HTML" | "Markdown";
    type: "telegram";
}

Properties

disableWebPagePreview?: boolean

Disables preview of web links in the sent messages when "true". Defaults to "false".

messageTemplate: string

The message template as a flux interpolated string.

parseMode?: "MarkdownV2" | "HTML" | "Markdown"

Parse mode of the message text per https://core.telegram.org/bots/api#formatting-options. Defaults to "MarkdownV2".

type: "telegram"

The discriminator between other types of notification rules is "telegram".

MMNEPVFCICPMFPCPTTAAATR