Added full support of Bot API

This commit is contained in:
JRoot Junior 2024-05-06 22:43:22 +03:00
parent 6d655330af
commit 59467423e7
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
129 changed files with 3384 additions and 921 deletions

View file

@ -2,7 +2,7 @@
getChat
#######
Returns: :obj:`Chat`
Returns: :obj:`ChatFullInfo`
.. automodule:: aiogram.methods.get_chat
:members:
@ -19,7 +19,7 @@ As bot method
.. code-block::
result: Chat = await bot.get_chat(...)
result: ChatFullInfo = await bot.get_chat(...)
Method as object
@ -35,4 +35,4 @@ With specific bot
.. code-block:: python
result: Chat = await bot(GetChat(...))
result: ChatFullInfo = await bot(GetChat(...))