DiscordLua
discorddiscord
v1.2.4
Install

InteractionContextType

Enum
On this page

discord.InteractionContextType lists the named constants for this enumeration. Prefer these names over hardcoded literals.

Values

discord.InteractionContextType.Guild
0
Guild. Use the symbolic name in bot code rather than the raw value.
discord.InteractionContextType.BotDM
1
Bot DM. Use the symbolic name in bot code rather than the raw value.
discord.InteractionContextType.PrivateChannel
2
Private Channel. Use the symbolic name in bot code rather than the raw value.

Usage

Read members as discord.InteractionContextType.Name. Do not hard-code numeric literals when a symbolic name exists.

Example

lua
local discord = require("discord")
print(discord.InteractionContextType.Guild)
Search Ctrl K Navigate Open Esc