All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pengrad.telegrambot.response.CreateForumTopicResponse Maven / Gradle / Ivy

There is a newer version: 7.11.0
Show newest version
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 +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy