InviteFlags
EnumOn this page
discord.InviteFlags lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.InviteFlags.IsGuestInvite1 << 0Is 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
local discord = require("discord")
print(discord.InviteFlags.IsGuestInvite)