DiscordLua
discorddiscord
v1.2.4
Install

GuildScheduledEventRecurrenceRuleFrequency

Enum
On this page

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

Values

discord.GuildScheduledEventRecurrenceRuleFrequency.Yearly
0
Yearly. Use the symbolic name in bot code rather than the raw value.
discord.GuildScheduledEventRecurrenceRuleFrequency.Monthly
1
Monthly. Use the symbolic name in bot code rather than the raw value.
discord.GuildScheduledEventRecurrenceRuleFrequency.Weekly
2
Weekly. Use the symbolic name in bot code rather than the raw value.
discord.GuildScheduledEventRecurrenceRuleFrequency.Daily
3
Daily. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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