diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelCreateAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelCreateAuditLogData.cs index b21a95958..f432b4ca5 100644 --- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelCreateAuditLogData.cs +++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelCreateAuditLogData.cs @@ -80,6 +80,7 @@ namespace Discord.Rest /// /// An representing the time in seconds required before the user can send another /// message; 0 if disabled. + /// null if this is not mentioned in this entry. /// public int? SlowModeInterval { get; } /// @@ -87,6 +88,7 @@ namespace Discord.Rest /// /// /// true if the created channel has the NSFW flag enabled; otherwise false. + /// null if this is not mentioned in this entry. /// public bool? IsNsfw { get; } /// @@ -95,6 +97,7 @@ namespace Discord.Rest /// /// An representing the bit-rate (bps) that the created voice channel defines and requests the /// client(s) to use. + /// null if this is not mentioned in this entry. /// public int? Bitrate { get; } /// diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelDeleteAuditLogData.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelDeleteAuditLogData.cs index 670212e54..390749929 100644 --- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelDeleteAuditLogData.cs +++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelDeleteAuditLogData.cs @@ -73,6 +73,7 @@ namespace Discord.Rest /// /// An representing the time in seconds required before the user can send another /// message; 0 if disabled. + /// null if this is not mentioned in this entry. /// public int? SlowModeInterval { get; } /// @@ -80,14 +81,15 @@ namespace Discord.Rest /// /// /// true if this channel had the NSFW flag enabled; otherwise false. + /// null if this is not mentioned in this entry. /// public bool? IsNsfw { get; } /// /// Gets the bit-rate of this channel if applicable. /// /// - /// An representing the bit-rate set of the voice channel; null if not - /// applicable. + /// An representing the bit-rate set of the voice channel. + /// null if this is not mentioned in this entry. /// public int? Bitrate { get; } /// diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelInfo.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelInfo.cs index a8b03aa99..d6d2fb4b3 100644 --- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelInfo.cs +++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/ChannelInfo.cs @@ -34,6 +34,7 @@ namespace Discord.Rest /// /// An representing the time in seconds required before the user can send another /// message; 0 if disabled. + /// null if this is not mentioned in this entry. /// public int? SlowModeInterval { get; } /// @@ -41,14 +42,15 @@ namespace Discord.Rest /// /// /// true if this channel has the NSFW flag enabled; otherwise false. + /// null if this is not mentioned in this entry. /// public bool? IsNsfw { get; } /// /// Gets the bit-rate of this channel if applicable. /// /// - /// An representing the bit-rate set for the voice channel; null if not - /// applicable. + /// An representing the bit-rate set for the voice channel; + /// null if this is not mentioned in this entry. /// public int? Bitrate { get; } } diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/GuildInfo.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/GuildInfo.cs index 985f2309c..85c7ac438 100644 --- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/GuildInfo.cs +++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/GuildInfo.cs @@ -32,11 +32,16 @@ namespace Discord.Rest /// /// An representing the amount of time in seconds for a user to be marked as inactive /// and moved into the AFK voice channel. + /// null if this is not mentioned in this entry. /// public int? AfkTimeout { get; } /// /// Gets the default message notifications for users who haven't explicitly set their notification settings. /// + /// + /// The default message notifications setting of this guild. + /// null if this is not mentioned in this entry. + /// public DefaultMessageNotifications? DefaultMessageNotifications { get; } /// /// Gets the ID of the AFK voice channel for this guild. @@ -69,6 +74,7 @@ namespace Discord.Rest /// /// /// The level of requirements. + /// null if this is not mentioned in this entry. /// public VerificationLevel? VerificationLevel { get; } /// @@ -84,6 +90,7 @@ namespace Discord.Rest /// /// /// The level of MFA requirement. + /// null if this is not mentioned in this entry. /// public MfaLevel? MfaLevel { get; } /// @@ -94,11 +101,11 @@ namespace Discord.Rest /// public ExplicitContentFilterLevel? ExplicitContentFilter { get; } /// - /// Gets the ID of the channel where randomized welcome messages are sent. + /// Gets the ID of the channel where system messages are sent. /// /// - /// A representing the snowflake identifier of the system channel where randomized - /// welcome messages are sent; null if none is set. + /// A representing the snowflake identifier of the channel where system + /// messages are sent; null if none is set. /// public ulong? SystemChannelId { get; } /// @@ -114,6 +121,7 @@ namespace Discord.Rest /// /// /// true if this guild can be embedded via widgets; otherwise false. + /// null if this is not mentioned in this entry. /// public bool? IsEmbeddable { get; } } diff --git a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs index 09f4c805a..ffa316faa 100644 --- a/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs +++ b/src/Discord.Net.Rest/Entities/AuditLogs/DataTypes/MemberInfo.cs @@ -25,6 +25,7 @@ namespace Discord.Rest /// /// true if the updated member is deafened (i.e. not permitted to listen to or speak to others) by the guild; /// otherwise false. + /// null if this is not mentioned in this entry. /// public bool? Deaf { get; } /// @@ -33,6 +34,7 @@ namespace Discord.Rest /// /// /// true if the updated member is muted by the guild; otherwise false. + /// null if this is not mentioned in this entry. /// public bool? Mute { get; } }