DiscordLua
discorddiscord
v1.2.4
Install

InviteType

Enum
On this page

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

Values

discord.InviteType.Guild
0
Guild. Use the symbolic name in bot code rather than the raw value.
discord.InviteType.GroupDM
1
Group DM. Use the symbolic name in bot code rather than the raw value.
discord.InviteType.Friend
2
Friend. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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