diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
index 63db5ac31..8dfce11d5 100644
--- a/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
+++ b/src/Discord.Net.Core/Entities/Guilds/IGuildIntegration.cs
@@ -5,35 +5,30 @@ namespace Discord
public interface IGuildIntegration
{
/// Gets the integration ID.
- /// Gets the integration ID.
+ /// A unique identifier value of this integration.
ulong Id { get; }
/// Gets the integration name.
- /// Gets the integration name.
+ /// A string containing the name of this integration.
string Name { get; }
/// Gets the integration type (twitch, youtube, etc).
- /// Gets the integration type (twitch, youtube, etc).
+ /// A string containing the name of the type of integration.
string Type { get; }
/// Gets if this integration is enabled or not.
- /// Gets if this integration is enabled or not.
+ /// A value indicating if this integration is enabled.
bool IsEnabled { get; }
/// Gets if this integration is syncing or not.
- /// Gets if this integration is syncing or not.
+ /// A value indicating if this integration is syncing.
bool IsSyncing { get; }
/// Gets the ID that this integration uses for "subscribers".
- /// Gets the ID that this integration uses for "subscribers".
ulong ExpireBehavior { get; }
/// Gets the grace period before expiring subscribers.
- /// Gets the grace period before expiring subscribers.
ulong ExpireGracePeriod { get; }
/// Gets when this integration was last synced.
- /// Gets when this integration was last synced.
+ /// A containing a date and time of day when the integration was last synced.
DateTimeOffset SyncedAt { get; }
///
/// Gets integration account information. See .
///
- ///
- /// Gets integration account information. See .
- ///
IntegrationAccount Account { get; }
IGuild Guild { get; }