setChatDescription#

Returns: bool

class aiogram.methods.set_chat_description.SetChatDescription(*, chat_id: int | str, description: str | None = None, **extra_data: Any)[source]#

Use this method to change the description of a group, a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.

Source: https://core.telegram.org/bots/api#setchatdescription

chat_id: int | str#

Unique identifier for the target chat or username of the target channel (in the format @channelusername)

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

description: str | None#

New chat description, 0-255 characters

Usage#

As bot method#

result: bool = await bot.set_chat_description(...)

Method as object#

Imports:

  • from aiogram.methods.set_chat_description import SetChatDescription

  • alias: from aiogram.methods import SetChatDescription

With specific bot#

result: bool = await bot(SetChatDescription(...))

As reply into Webhook in handler#

return SetChatDescription(...)

As shortcut from received object#