getCustomEmojiStickers

Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects. This method support both normal and static use

Arguments
Name Type Description Required
custom_emoji_ids string[] | array List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified. yes
token string | null You can use this method on another bot with specify this parameter no
forgot bool | null You can set to not receive request result, dont set it or pass null for turn it off no
answer bool | null You can set to answer to webhook, dont set it or pass null for turn it off no

Output : BPT\types\sticker[] | BPT\types\responseError | bool

Static or normal : Static

Examples :

telegram::getCustomEmojiStickers(custom_emoji_ids: Array, token: String | null, forgot: Boolean | null, answer: Boolean | null);
telegram::getCustomEmojiStickers(['custom_emoji_ids' => Array, 'token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
telegram::getCustomEmojiStickers(custom_emoji_ids: Array);
telegram::getCustomEmojiStickers(['custom_emoji_ids' => Array]);
$this->getCustomEmojiStickers(custom_emoji_ids: Array, token: String | null, forgot: Boolean | null, answer: Boolean | null);
$this->getCustomEmojiStickers(['custom_emoji_ids' => Array, 'token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
$this->getCustomEmojiStickers(custom_emoji_ids: Array);
$this->getCustomEmojiStickers(['custom_emoji_ids' => Array]);