GatewayCloseCodes
EnumOn this page
discord.GatewayCloseCodes lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.GatewayCloseCodes.UnknownError4000Unknown Error. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.UnknownOpcode4001Unknown Opcode. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.DecodeError4002Decode Error. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.NotAuthenticated4003Not Authenticated. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.AuthenticationFailed4004Authentication Failed. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.AlreadyAuthenticated4005Already Authenticated. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.InvalidSeq4007Invalid Seq. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.RateLimited4008Rate Limited. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.SessionTimedOut4009Session Timed Out. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.InvalidShard4010Invalid Shard. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.ShardingRequired4011Sharding Required. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.InvalidAPIVersion4012Invalid APIVersion. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.InvalidIntents4013Invalid Intents. Use the symbolic name in bot code rather than the raw value.
discord.GatewayCloseCodes.DisallowedIntents4014Disallowed Intents. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.GatewayCloseCodes.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.GatewayCloseCodes.UnknownError)