Browse Source

Add missing message types (Needs descriptions) (#70)

* Add missing channel types (Needs descriptions)

* Update MessageType.cs

Co-authored-by: Quin Lynch <49576606+quinchs@users.noreply.github.com>
pull/1923/head
MrCakeSlayer GitHub 3 years ago
parent
commit
91496b8e69
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 35 additions and 1 deletions
  1. +35
    -1
      src/Discord.Net.Core/Entities/Messages/MessageType.cs

+ 35
- 1
src/Discord.Net.Core/Entities/Messages/MessageType.cs View File

@@ -58,8 +58,31 @@ namespace Discord
/// </summary>
ChannelFollowAdd = 12,
/// <summary>
/// The message for when a guild is disqualified from discovery.
/// </summary>
GuildDiscoveryDisqualified = 14,
/// <summary>
/// The message for when a guild is requalified for discovery.
/// </summary>
GuildDiscoveryRequalified = 15,
/// <summary>
/// The message for when the initial warning is sent for the initial grace period discovery.
/// </summary>
GuildDiscoveryGracePeriodInitialWarning = 16,
/// <summary>
/// The message for when the final warning is sent for the initial grace period discovery.
/// </summary>
GuildDiscoveryGracePeriodFinalWarning = 17,
/// <summary>
/// The message for when a thread is created.
/// </summary>
ThreadCreated = 18,
/// <summary>
/// The message is an inline reply.
/// </summary>
/// <remarks>
/// Only available in API v8
/// </remarks>
Reply = 19,
/// <summary>
/// The message is an Application Command
@@ -67,6 +90,17 @@ namespace Discord
/// <remarks>
/// Only available in API v8
/// </remarks>
ApplicationCommand = 20
ApplicationCommand = 20,
/// <summary>
/// The message that starts a thread.
/// </summary>
/// <remarks>
/// Only available in API v9
/// </remarks>
ThreadStarterMessage = 21,
/// <summary>
/// The message for a invite reminder
/// </summary>
GuildInviteReminder = 22
}
}

Loading…
Cancel
Save