closeForumTopic¶
Returns: bool
- class litegram.methods.close_forum_topic.CloseForumTopic(*, chat_id: ChatIdUnion, message_thread_id: int, **extra_data: Any)[source]¶
Use this method to close an open topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns
Trueon success.Source: https://core.telegram.org/bots/api#closeforumtopic
- chat_id: ChatIdUnion¶
Unique identifier for the target chat or username of the target supergroup (in the format
@supergroupusername)
Usage¶
As bot method¶
result: bool = await bot.close_forum_topic(...)
Method as object¶
Imports:
from litegram.methods.close_forum_topic import CloseForumTopicalias:
from litegram.methods import CloseForumTopic
With specific bot¶
result: bool = await bot(CloseForumTopic(...))
As reply into Webhook in handler¶
return CloseForumTopic(...)