[docs]classGetMyShortDescription(TelegramMethod[BotShortDescription]):""" Use this method to get the current bot short description for the given user language. Returns :class:`aiogram.types.bot_short_description.BotShortDescription` on success. Source: https://core.telegram.org/bots/api#getmyshortdescription """__returning__=BotShortDescription__api_method__="getMyShortDescription"language_code:Optional[str]=None"""A two-letter ISO 639-1 language code or an empty string"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,language_code:Optional[str]=None,**__pydantic_kwargs:Any)->None:# DO NOT EDIT MANUALLY!!!# This method was auto-generated via `butcher`# Is needed only for type checking and IDE support without any additional pluginssuper().__init__(language_code=language_code,**__pydantic_kwargs)