mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-06 07:50:32 +00:00
12 lines
228 B
ReStructuredText
12 lines
228 B
ReStructuredText
Added Currency enum.
|
|
You can use it like this:
|
|
|
|
.. code-block:: python
|
|
|
|
from aiogram import Bot
|
|
from aiogram.enum import Currency
|
|
await Bot.send_invoice(
|
|
...,
|
|
currency=Currency.USD,
|
|
...
|
|
)
|