DiscordLua
discorddiscord
v1.2.4
Install

TeamMemberMembershipState

Enum
On this page

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

Values

discord.TeamMemberMembershipState.Invited
1
Invited. Use the symbolic name in bot code rather than the raw value.
discord.TeamMemberMembershipState.Accepted
2
Accepted. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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