[docs]classReplaceManagedBotToken(TelegramMethod[str]):""" Use this method to revoke the current token of a managed bot and generate a new one. Returns the new token as *String* on success. Source: https://core.telegram.org/bots/api#replacemanagedbottoken """__returning__=str__api_method__="replaceManagedBotToken"user_id:int"""User identifier of the managed bot whose token will be replaced"""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)