######### sendVoice ######### Returns: :obj:`Message` .. automodule:: aiogram.methods.send_voice :members: :member-order: bysource :undoc-members: True Usage ===== As bot method ------------- .. code-block:: result: Message = await bot.send_voice(...) Method as object ---------------- Imports: - :code:`from aiogram.methods.send_voice import SendVoice` - alias: :code:`from aiogram.methods import SendVoice` In handlers with current bot ---------------------------- .. code-block:: python result: Message = await SendVoice(...) With specific bot ~~~~~~~~~~~~~~~~~ .. code-block:: python result: Message = await bot(SendVoice(...)) As reply into Webhook in handler ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. code-block:: python return SendVoice(...)