DiscordLua
discorddiscord
v1.2.4
Install

VideoQualityMode

Enum
On this page

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

Values

discord.VideoQualityMode.Auto
1
Auto. Use the symbolic name in bot code rather than the raw value.
discord.VideoQualityMode.Full
2
Full. Use the symbolic name in bot code rather than the raw value.

Usage

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

Example

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