RoleFlags
EnumOn this page
discord.RoleFlags lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.RoleFlags.InPrompt1 << 0In Prompt. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.RoleFlags.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.RoleFlags.InPrompt)