io.github.biezhi.tgbot.request.DeleteStickerFromSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot-api Show documentation
Show all versions of telegram-bot-api Show documentation
Telegram bot library by Java
The newest version!
package io.github.biezhi.tgbot.request;
import io.github.biezhi.tgbot.response.BotResponse;
/**
* Stas Parshin
* 23 July 2017
*/
public class DeleteStickerFromSet extends BotRequest {
public DeleteStickerFromSet(String sticker) {
super(BotResponse.class);
add("sticker", sticker);
}
}