aiogram/CHANGES/1194.feature.rst

13 lines
228 B
ReStructuredText
Raw Normal View History

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,
...
)