Partials
EnumOn this page
discord.Partials lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.Partials.User0User. Use the symbolic name in bot code rather than the raw value.
discord.Partials.Channel1Channel. Use the symbolic name in bot code rather than the raw value.
discord.Partials.GuildMember2Guild Member. Use the symbolic name in bot code rather than the raw value.
discord.Partials.Message3Message. Use the symbolic name in bot code rather than the raw value.
discord.Partials.Reaction4Reaction. Use the symbolic name in bot code rather than the raw value.
discord.Partials.GuildScheduledEvent5Guild Scheduled Event. Use the symbolic name in bot code rather than the raw value.
discord.Partials.ThreadMember6Thread Member. Use the symbolic name in bot code rather than the raw value.
discord.Partials.SoundboardSound7Soundboard Sound. Use the symbolic name in bot code rather than the raw value.
discord.Partials.Poll8Poll. Use the symbolic name in bot code rather than the raw value.
discord.Partials.PollAnswer9Poll Answer. Use the symbolic name in bot code rather than the raw value.
discord.Partials.USER0USER. Use the symbolic name in bot code rather than the raw value.
discord.Partials.CHANNEL1CHANNEL. Use the symbolic name in bot code rather than the raw value.
discord.Partials.GUILD_MEMBER2GUILD MEMBER. Use the symbolic name in bot code rather than the raw value.
discord.Partials.MESSAGE3MESSAGE. Use the symbolic name in bot code rather than the raw value.
discord.Partials.REACTION4REACTION. Use the symbolic name in bot code rather than the raw value.
discord.Partials.GUILD_SCHEDULED_EVENT5GUILD SCHEDULED EVENT. Use the symbolic name in bot code rather than the raw value.
discord.Partials.THREAD_MEMBER6THREAD MEMBER. Use the symbolic name in bot code rather than the raw value.
discord.Partials.SOUNDBOARD_SOUND7SOUNDBOARD SOUND. Use the symbolic name in bot code rather than the raw value.
discord.Partials.POLL8POLL. Use the symbolic name in bot code rather than the raw value.
discord.Partials.POLL_ANSWER9POLL ANSWER. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.Partials.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.Partials.User)