diff --git a/DisCatSharp/Enums/User/UserFlags.cs b/DisCatSharp/Enums/User/UserFlags.cs index 65d441264..155b25c94 100644 --- a/DisCatSharp/Enums/User/UserFlags.cs +++ b/DisCatSharp/Enums/User/UserFlags.cs @@ -1,221 +1,221 @@ // This file is part of the DisCatSharp project, based off DSharpPlus. // // Copyright (c) 2021-2023 AITSYS // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. using System; namespace DisCatSharp; /// /// Represents additional details of a users account. /// [Flags] public enum UserFlags : long { /// /// The user has no flags. /// None = 0, /// /// The user is a Discord employee. /// Staff = 1L << 0, /// /// The user is a Discord partner. /// Partner = 1L << 1, /// /// The user has the HypeSquad badge. /// HypeSquad = 1L << 2, /// /// The user reached the first bug hunter tier. /// BugHunterLevelOne = 1L << 3, /// /// The user has SMS recovery for 2FA enabled. /// MfaSms = 1L << 4, /// /// The user is marked as dismissed Nitro promotion /// PremiumPromoDismissed = 1L << 5, /// /// The user is a member of house bravery. /// HouseBravery = 1L << 6, /// /// The user is a member of house brilliance. /// HouseBrilliance = 1L << 7, /// /// The user is a member of house balance. /// HouseBalance = 1L << 8, /// /// The user has the early supporter badge. /// PremiumEarlySupporter = 1L << 9, /// /// User is a . /// TeamPseudoUser = 1L << 10, /// /// User previously requested verification and/or partnership for a guild. /// InternalApplication = 1L << 11, /// /// Whether the user is an official system user. /// System = 1L << 12, /// /// Whether the user has unread system messages. /// HasUnreadUrgentMessages = 1L << 13, /// /// The user reached the second bug hunter tier. /// BugHunterLevelTwo = 1L << 14, /// /// The user has a pending deletion for being underage in DOB prompt. /// UnderageDeleted = 1L << 15, /// /// The user is a verified bot. /// VerifiedBot = 1L << 16, /// /// The user is a verified bot developer. /// VerifiedDeveloper = 1L << 17, /// /// The user is a discord certified moderator. /// CertifiedModerator = 1L << 18, /// /// The user is a bot and has set an interactions endpoint url. /// BotHttpInteractions = 1L << 19, /// /// The user is disabled for being a spammer. /// Spammer = 1L << 20, /// /// Nitro is disabled for user. /// Used by discord staff instead of forcedNonPremium. /// DisablePremium = 1L << 21, /// /// User is an active developer. /// Read more here: https://support-dev.discord.com/hc/articles/10113997751447. /// ActiveDeveloper = 1L << 22, /// /// Account has a high global ratelimit. /// HighGlobalRateLimit = 1L << 33, /// /// Account has been deleted. /// Deleted = 1L << 34, /// /// Account has been disabled for suspicious activity. /// DisabledSuspiciousActivity = 1L << 35, /// /// Account was deleted by the user. /// SelfDeleted = 1L << 36, /// /// The user has a premium discriminator. /// PremiumDiscriminator = 1L << 37, /// /// The user has used the desktop client. /// UsedDesktopClient = 1L << 38, /// /// The user has used the web client. /// UsedWebClient = 1L << 39, /// /// The user has used the mobile client. /// UsedMobileClient = 1L << 40, /// /// The user is currently temporarily or permanently disabled. /// Disabled = 1L << 42, /// /// The user has a verified email. /// VerifiedEmail = 1L << 43, /// /// The user is currently quarantined. /// The user can't start new dms and join servers. /// The user has to appeal via https://dis.gd/appeal. /// Quarantined = 1L << 44, /// /// User is a collaborator and has staff permissions. /// Collaborator = 1L << 50, /// /// User is a restricted collaborator and has staff permissions. /// - RestrictedCollaborator = 1L << 50, + RestrictedCollaborator = 1L << 51, }