com.pengrad.telegrambot.response.CreateForumTopicResponse 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.ForumTopic;
public class CreateForumTopicResponse extends BaseResponse {
private ForumTopic result;
public ForumTopic forumTopic() {
return result;
}
CreateForumTopicResponse() {
}
@Override
public String toString() {
return "CreateForumTopicResponse{" +
"result=" + result +
'}';
}
}