DiscordLua
discorddiscord
v1.2.4
Install

IntegrationExpireBehavior

Enum
On this page

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

Values

discord.IntegrationExpireBehavior.RemoveRole
0
Remove Role. Use the symbolic name in bot code rather than the raw value.
discord.IntegrationExpireBehavior.Kick
1
Kick. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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