com.pengrad.telegrambot.request.SetStickerEmojiList 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.BaseResponse;
public class SetStickerEmojiList extends BaseRequest {
/**
*
* @param sticker File identifier of the sticker
* @param emojiList A list of 1-20 emoji associated with the sticker
*/
public SetStickerEmojiList(String sticker, String[] emojiList) {
super(BaseResponse.class);
add("sticker", sticker);
add("emoji_list", emojiList);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy