[docs]classGetMyDefaultAdministratorRights(TelegramMethod[ChatAdministratorRights]):""" Use this method to get the current default administrator rights of the bot. Returns :class:`aiogram.types.chat_administrator_rights.ChatAdministratorRights` on success. Source: https://core.telegram.org/bots/api#getmydefaultadministratorrights """__returning__=ChatAdministratorRights__api_method__="getMyDefaultAdministratorRights"for_channels:Optional[bool]=None"""Pass :code:`True` to get default administrator rights of the bot in channels. Otherwise, default administrator rights of the bot for groups and supergroups will be returned."""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,for_channels:Optional[bool]=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__(for_channels=for_channels,**__pydantic_kwargs)