GuildMemberFlags
EnumOn this page
discord.GuildMemberFlags lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.GuildMemberFlags.DidRejoin1 << 0Did Rejoin. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.CompletedOnboarding1 << 1Completed Onboarding. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.BypassesVerification1 << 2Bypasses Verification. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.StartedOnboarding1 << 3Started Onboarding. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.IsGuest1 << 4Is Guest. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.StartedHomeActions1 << 5Started Home Actions. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.CompletedHomeActions1 << 6Completed Home Actions. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.AutomodQuarantinedUsername1 << 7Automod Quarantined Username. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.DmSettingsUpsellAcknowledged1 << 9Dm Settings Upsell Acknowledged. Use the symbolic name in bot code rather than the raw value.
discord.GuildMemberFlags.AutomodQuarantinedBio1 << 10Automod Quarantined Bio. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.GuildMemberFlags.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.GuildMemberFlags.DidRejoin)