aiogram/docs/api/methods/unhide_general_forum_topic.rst
2023-07-04 00:39:02 +03:00

45 lines
849 B
ReStructuredText

#######################
unhideGeneralForumTopic
#######################
Returns: :obj:`bool`
.. automodule:: aiogram.methods.unhide_general_forum_topic
:members:
:member-order: bysource
:undoc-members: True
:exclude-members: model_config,model_fields
Usage
=====
As bot method
-------------
.. code-block::
result: bool = await bot.unhide_general_forum_topic(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.unhide_general_forum_topic import UnhideGeneralForumTopic`
- alias: :code:`from aiogram.methods import UnhideGeneralForumTopic`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: bool = await bot(UnhideGeneralForumTopic(...))
As reply into Webhook in handler
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. code-block:: python
return UnhideGeneralForumTopic(...)