diff --git a/src/Models/AuditLog/AuditLog.cs b/src/Models/AuditLog/AuditLog.cs
index 54fd26bad..0eabc493b 100644
--- a/src/Models/AuditLog/AuditLog.cs
+++ b/src/Models/AuditLog/AuditLog.cs
@@ -7,16 +7,18 @@ namespace Discord.Net.Models
///
public record AuditLog
{
+ /*
///
/// Gets an array of s.
///
- /*[JsonPropertyName("webhooks")]
+ [JsonPropertyName("webhooks")]
public Optional Webhooks { get; init; }*/ //TODO Add Webhook
+ /*
///
/// Gets an array of s.
///
- /*[JsonPropertyName("users")]
+ [JsonPropertyName("users")]
public Optional Users { get; init; }*/ //TODO Add User
///
@@ -25,10 +27,11 @@ namespace Discord.Net.Models
[JsonPropertyName("audit_log_entries")]
public Optional AuditLogEntries { get; init; }
+ /*
///
/// Gets an array of s.
///
- /*[JsonPropertyName("integrations")]
+ [JsonPropertyName("integrations")]
public Optional Integrations { get; init; }*/ //TODO Add Integration
}
}