com.pengrad.telegrambot.response.GetWebhookInfoResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.response;
import com.pengrad.telegrambot.model.WebhookInfo;
/**
* Stas Parshin
* 03 October 2016
*/
public class GetWebhookInfoResponse extends BaseResponse {
private WebhookInfo result;
public WebhookInfo webhookInfo() {
return result;
}
@Override
public String toString() {
return "GetWebhookInfoResponse{" +
"result=" + result +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy