com.pengrad.telegrambot.response.GetFileResponse 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.File;
/**
* Stas Parshin
* 16 October 2015
*/
public class GetFileResponse extends BaseResponse {
private File result;
GetFileResponse() {
}
public File file() {
return result;
}
@Override
public String toString() {
return "GetFileResponse{" +
"result=" + result +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy