Update Guild and Message Models (#1165)
* Add ExplicitContentFilter property to Guild * re-order properties to match order listed on api docs * re-order SystemChannelId to match api docs * Implement ApplicationId in Guild model * Add ExplicitContentFilter property to Guild * re-order properties to match order listed on api docs * re-order SystemChannelId to match api docs * Implement ApplicationId in Guild model * Improve xmldoc for IGuild ExplicitContentFilter * Update xmldoc * docs "Id" -> "ID" * rename Test.GuildPermissions to a more general Test.Guilds * Add ExplicitContentFilter to GuildProperties * Add a test for ExplicitContentFilterLevel modification behavior * Implement ModifyAsync behavior * simplify ExplicitContentFilter test * Add RestGuild ApplicationId inheritdoc * Implement message Activity and Application model update * RestMessage Application and Activity implementation * add ToString to MessageApplication * Add IconUrl property to MessageApplication * clean up whitespace * another excessive whitespace removal
This commit is contained in:
committed by
Christopher F
parent
10f67a8098
commit
d30d12246d
@@ -32,6 +32,8 @@ namespace Discord.Rest
|
||||
public MfaLevel MfaLevel { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public DefaultMessageNotifications DefaultMessageNotifications { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public ExplicitContentFilterLevel ExplicitContentFilter { get; private set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public ulong? AFKChannelId { get; private set; }
|
||||
@@ -48,6 +50,8 @@ namespace Discord.Rest
|
||||
/// <inheritdoc />
|
||||
public string SplashId { get; private set; }
|
||||
internal bool Available { get; private set; }
|
||||
/// <inheritdoc />
|
||||
public ulong? ApplicationId { get; private set; }
|
||||
|
||||
/// <inheritdoc />
|
||||
public DateTimeOffset CreatedAt => SnowflakeUtils.FromSnowflake(Id);
|
||||
@@ -98,6 +102,8 @@ namespace Discord.Rest
|
||||
VerificationLevel = model.VerificationLevel;
|
||||
MfaLevel = model.MfaLevel;
|
||||
DefaultMessageNotifications = model.DefaultMessageNotifications;
|
||||
ExplicitContentFilter = model.ExplicitContentFilter;
|
||||
ApplicationId = model.ApplicationId;
|
||||
|
||||
if (model.Emojis != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user