VoiceConnectionStatus
EnumOn this page
discord.VoiceConnectionStatus lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.VoiceConnectionStatus.SignallingsignallingSignalling. Use the symbolic name in bot code rather than the raw value.
discord.VoiceConnectionStatus.SignalingsignallingSignaling. Use the symbolic name in bot code rather than the raw value.
discord.VoiceConnectionStatus.ConnectingconnectingConnecting. Use the symbolic name in bot code rather than the raw value.
discord.VoiceConnectionStatus.ReadyreadyReady. Use the symbolic name in bot code rather than the raw value.
discord.VoiceConnectionStatus.DisconnecteddisconnectedDisconnected. Use the symbolic name in bot code rather than the raw value.
discord.VoiceConnectionStatus.DestroyeddestroyedDestroyed. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.VoiceConnectionStatus.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.VoiceConnectionStatus.Signalling)