[docs]classGetManagedBotAccessSettings(TelegramMethod[BotAccessSettings]):""" Use this method to get the access settings of a managed bot. Returns a :class:`aiogram.types.bot_access_settings.BotAccessSettings` object on success. Source: https://core.telegram.org/bots/api#getmanagedbotaccesssettings """__returning__=BotAccessSettings__api_method__="getManagedBotAccessSettings"user_id:int"""User identifier of the managed bot whose access settings will be returned"""ifTYPE_CHECKING:# DO NOT EDIT MANUALLY!!!# This section was auto-generated via `butcher`def__init__(__pydantic__self__,*,user_id:int,**__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__(user_id=user_id,**__pydantic_kwargs)