mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-14 10:53:23 +00:00
Added full support of Bot API 7.5 (#1518)
* Added full support of Bot API 7.5 * Added changelog * Update date type in RevenueWithdrawalStateSucceeded * Added example
This commit is contained in:
parent
dcfc9632f3
commit
1f7bbeb355
72 changed files with 1629 additions and 51 deletions
38
docs/api/methods/get_star_transactions.rst
Normal file
38
docs/api/methods/get_star_transactions.rst
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
###################
|
||||
getStarTransactions
|
||||
###################
|
||||
|
||||
Returns: :obj:`StarTransactions`
|
||||
|
||||
.. automodule:: aiogram.methods.get_star_transactions
|
||||
:members:
|
||||
:member-order: bysource
|
||||
:undoc-members: True
|
||||
:exclude-members: model_config,model_fields
|
||||
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
As bot method
|
||||
-------------
|
||||
|
||||
.. code-block::
|
||||
|
||||
result: StarTransactions = await bot.get_star_transactions(...)
|
||||
|
||||
|
||||
Method as object
|
||||
----------------
|
||||
|
||||
Imports:
|
||||
|
||||
- :code:`from aiogram.methods.get_star_transactions import GetStarTransactions`
|
||||
- alias: :code:`from aiogram.methods import GetStarTransactions`
|
||||
|
||||
With specific bot
|
||||
~~~~~~~~~~~~~~~~~
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
result: StarTransactions = await bot(GetStarTransactions(...))
|
||||
|
|
@ -161,6 +161,7 @@ Payments
|
|||
answer_pre_checkout_query
|
||||
answer_shipping_query
|
||||
create_invoice_link
|
||||
get_star_transactions
|
||||
refund_star_payment
|
||||
send_invoice
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue