for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Copyright Pincer 2021-Present
# Full MIT License can be found in `LICENSE` at the project root.
"""sent when a user in a subscribed voice channel stops speaking"""
from ..core.dispatch import GatewayDispatch
from ..objects.events.voice import SpeakingStopEvent
from ..utils.conversion import construct_client_dict
from ..utils.types import Coro
async def speaking_stop_middleware(self, payload: GatewayDispatch):
"""|coro|
Middleware for ``on_speaking_stop`` event.
Parameters
----------
payload : :class:`GatewayDispatch`
The data received from the speaking stop event.
Returns
-------
Tuple[:class:`str`, List[:class:`Snowflake`]]
``on_speaking_stop`` and a ``Snowflake`` (user_id)
"""
return "on_speaking_stop", [
SpeakingStopEvent.from_dict(construct_client_dict(self, payload.data))
]
def export() -> Coro:
return speaking_stop_middleware