setChatTitle¶
Returns: bool
- class aiogram.methods.set_chat_title.SetChatTitle(*, chat_id: int | str, title: str, **extra_data: Any)[source]¶
Use this method to change the title of a chat. Titles can’t be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns
Trueon success.Source: https://core.telegram.org/bots/api#setchattitle
- chat_id: ChatIdUnion¶
Unique identifier for the target chat or username of the target channel (in the format
@channelusername)
- title: str¶
New chat title, 1-128 characters
Usage¶
As bot method¶
result: bool = await bot.set_chat_title(...)
Method as object¶
Imports:
from aiogram.methods.set_chat_title import SetChatTitlealias:
from aiogram.methods import SetChatTitle
With specific bot¶
result: bool = await bot(SetChatTitle(...))
As reply into Webhook in handler¶
return SetChatTitle(...)