Source code for discord.events.voice_channel_status_update
from ..snowflake import Snowflake
from ..utils import Nullable
from ._base import DispatchEvent
[docs]
class VoiceChannelStatusUpdateEvent(DispatchEvent):
guild_id: Snowflake
"""The guild ID."""
id: Snowflake
"""The channel ID."""
status: Nullable[str]
"""The new voice channel status."""