DiscordLua
discorddiscord
v1.2.4
Install

InviteFlags

Enum
On this page

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

Values

discord.InviteFlags.IsGuestInvite
1 << 0
Is Guest Invite. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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