org.telegram.telegrambots.webhook.TelegramWebhookBot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegrambots-webhook Show documentation
Show all versions of telegrambots-webhook Show documentation
Easy to use library to create Telegram Bots
package org.telegram.telegrambots.webhook;
import org.telegram.telegrambots.meta.api.methods.botapimethods.BotApiMethod;
import org.telegram.telegrambots.meta.api.objects.Update;
public interface TelegramWebhookBot {
void runDeleteWebhook();
void runSetWebhook();
BotApiMethod> consumeUpdate(Update update);
String getBotPath();
}