forked from PsychoTea/Oxide.Ext.Discord
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some new fields related to Nitro Boosting
Added enums for Guild MFA/Verification Level
- Loading branch information
Showing
6 changed files
with
50 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace Oxide.Ext.Discord.DiscordObjects | ||
{ | ||
public enum GuildMFALevel | ||
{ | ||
None = 0, | ||
Elevated = 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace Oxide.Ext.Discord.DiscordObjects | ||
{ | ||
public enum GuildPremiumTier | ||
{ | ||
None = 0, | ||
Tier1 = 1, | ||
Tier2 = 2, | ||
Tier3 = 3 | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
Oxide.Ext.Discord/DiscordObjects/GuildVerificationLevel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace Oxide.Ext.Discord.DiscordObjects | ||
{ | ||
public enum GuildVerificationLevel | ||
{ | ||
None = 0, | ||
Low = 1, | ||
Medium = 2, | ||
High = 3, | ||
VeryHigh = 4 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...Ext.Discord/DiscordObjects/PremiumType.cs → ...Discord/DiscordObjects/UserPremiumType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters