ApplicationRoleConnectionMetadataType
EnumOn this page
discord.ApplicationRoleConnectionMetadataType lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.ApplicationRoleConnectionMetadataType.IntegerLessThanOrEqual1Integer Less Than Or Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.IntegerGreaterThanOrEqual2Integer Greater Than Or Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.IntegerEqual3Integer Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.IntegerNotEqual4Integer Not Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.DatetimeLessThanOrEqual5Datetime Less Than Or Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.DatetimeGreaterThanOrEqual6Datetime Greater Than Or Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.BooleanEqual7Boolean Equal. Use the symbolic name in bot code rather than the raw value.
discord.ApplicationRoleConnectionMetadataType.BooleanNotEqual8Boolean Not Equal. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.ApplicationRoleConnectionMetadataType.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.ApplicationRoleConnectionMetadataType.IntegerLessThanOrEqual)