com.pengrad.telegrambot.response.GetMyDescriptionResponse 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 java.util.Objects;
import com.pengrad.telegrambot.model.BotDescription;
public class GetMyDescriptionResponse extends BaseResponse {
private BotDescription result;
public BotDescription botDescription() {
return result;
}
@Override
public String toString() {
return "GetMyDescriptionResponse{" +
"result=" + Objects.toString(result) +
'}';
}
}