mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
* Update pydantic, fix errors and warnings (all?) * Fixed typehints * Reformat code, removed unused imports * Fixed typing extensions version compatibility * Fixed coverage * Describe changes * Regen code
20 lines
642 B
Python
20 lines
642 B
Python
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
from ..types import Sticker
|
|
from .base import TelegramMethod
|
|
|
|
|
|
class GetCustomEmojiStickers(TelegramMethod[List[Sticker]]):
|
|
"""
|
|
Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of :class:`aiogram.types.sticker.Sticker` objects.
|
|
|
|
Source: https://core.telegram.org/bots/api#getcustomemojistickers
|
|
"""
|
|
|
|
__returning__ = List[Sticker]
|
|
__api_method__ = "getCustomEmojiStickers"
|
|
|
|
custom_emoji_ids: List[str]
|
|
"""List of custom emoji identifiers. At most 200 custom emoji identifiers can be specified."""
|