com.pengrad.telegrambot.request.GetCustomEmojiStickers 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.request;
import com.pengrad.telegrambot.response.GetCustomEmojiStickersResponse;
/**
* Mirco Ianese
* 16 Aug 2022
*/
public class GetCustomEmojiStickers extends BaseRequest {
public GetCustomEmojiStickers(String... custom_emoji_ids) {
super(GetCustomEmojiStickersResponse.class);
add("custom_emoji_ids", custom_emoji_ids);
}
}