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