getCustomEmojiStickers¶
Returns: list[Sticker]
- class litegram.methods.get_custom_emoji_stickers.GetCustomEmojiStickers(*, custom_emoji_ids: list[str], **extra_data: Any)[source]¶
Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of
litegram.types.sticker.Stickerobjects.Source: https://core.telegram.org/bots/api#getcustomemojistickers
Usage¶
As bot method¶
result: list[Sticker] = await bot.get_custom_emoji_stickers(...)
Method as object¶
Imports:
from litegram.methods.get_custom_emoji_stickers import GetCustomEmojiStickersalias:
from litegram.methods import GetCustomEmojiStickers
With specific bot¶
result: list[Sticker] = await bot(GetCustomEmojiStickers(...))