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