GuildFeature
EnumOn this page
discord.GuildFeature lists the named constants for this enumeration. Prefer these names over hardcoded literals.
Values
discord.GuildFeature.AnimatedBannerANIMATED_BANNERAnimated Banner. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.AnimatedIconANIMATED_ICONAnimated Icon. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.ApplicationCommandPermissionsV2APPLICATION_COMMAND_PERMISSIONS_V2Application Command Permissions V2. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.AutoModerationAUTO_MODERATIONAuto Moderation. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.BannerBANNERBanner. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.CommunityCOMMUNITYCommunity. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.CreatorMonetizableProvisionalCREATOR_MONETIZABLE_PROVISIONALCreator Monetizable Provisional. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.CreatorStorePageCREATOR_STORE_PAGECreator Store Page. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.DeveloperSupportServerDEVELOPER_SUPPORT_SERVERDeveloper Support Server. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.DiscoverableDISCOVERABLEDiscoverable. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.FeaturableFEATURABLEFeaturable. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.HasDirectoryEntryHAS_DIRECTORY_ENTRYHas Directory Entry. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.HubHUBHub. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.InvitesDisabledINVITES_DISABLEDInvites Disabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.InviteSplashINVITE_SPLASHInvite Splash. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.LinkedToHubLINKED_TO_HUBLinked To Hub. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.MemberVerificationGateEnabledMEMBER_VERIFICATION_GATE_ENABLEDMember Verification Gate Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.MoreSoundboardMORE_SOUNDBOARDMore Soundboard. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.MonetizationEnabledMONETIZATION_ENABLEDMonetization Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.MoreStickersMORE_STICKERSMore Stickers. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.NewsNEWSNews. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.PartneredPARTNEREDPartnered. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.PreviewEnabledPREVIEW_ENABLEDPreview Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.PrivateThreadsPRIVATE_THREADSPrivate Threads. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.RaidAlertsDisabledRAID_ALERTS_DISABLEDRaid Alerts Disabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.RelayEnabledRELAY_ENABLEDRelay Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.RoleIconsROLE_ICONSRole Icons. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.RoleSubscriptionsAvailableForPurchaseROLE_SUBSCRIPTIONS_AVAILABLE_FOR_PURCHASERole Subscriptions Available For Purchase. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.RoleSubscriptionsEnabledROLE_SUBSCRIPTIONS_ENABLEDRole Subscriptions Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.SoundboardSOUNDBOARDSoundboard. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.TicketedEventsEnabledTICKETED_EVENTS_ENABLEDTicketed Events Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.VanityURLVANITY_URLVanity URL. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.VerifiedVERIFIEDVerified. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.VIPRegionsVIP_REGIONSVIPRegions. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.WelcomeScreenEnabledWELCOME_SCREEN_ENABLEDWelcome Screen Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.GuildTagsGUILD_TAGSGuild Tags. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.EnhancedRoleColorsENHANCED_ROLE_COLORSEnhanced Role Colors. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.GuestsEnabledGUESTS_ENABLEDGuests Enabled. Use the symbolic name in bot code rather than the raw value.
discord.GuildFeature.PinPermissionMigrationCompletePIN_PERMISSION_MIGRATION_COMPLETEPin Permission Migration Complete. Use the symbolic name in bot code rather than the raw value.
Usage
Read members as discord.GuildFeature.Name. Do not hard-code numeric literals when a symbolic name exists.
Example
local discord = require("discord")
print(discord.GuildFeature.AnimatedBanner)