diff --git a/src/Auth0.ManagementApi/Models/LogEntry.cs b/src/Auth0.ManagementApi/Models/LogEntry.cs
index 0daf2c17..587a4396 100644
--- a/src/Auth0.ManagementApi/Models/LogEntry.cs
+++ b/src/Auth0.ManagementApi/Models/LogEntry.cs
@@ -128,5 +128,35 @@ public class LogEntry
///
[JsonProperty("user_name")]
public string UserName { get; set; }
+
+ ///
+ /// The IP address of the Client
+ ///
+ [JsonProperty("client_ip")]
+ public string ClientIpAddress { get; set; }
+
+ ///
+ /// API audience the event applies to
+ ///
+ [JsonProperty("audience")]
+ public string Audience { get; set; }
+
+ ///
+ /// Scope permissions applied to the event
+ ///
+ [JsonProperty("scope")]
+ public string Scope { get; set; }
+
+ ///
+ /// Unique ID of the event
+ ///
+ [JsonProperty("log_id")]
+ public string LogId { get; set; }
+
+ ///
+ /// The tenant in which the log event belongs to
+ ///
+ [JsonProperty("tenant_name")]
+ public string TenantName { get; set; }
}
}
\ No newline at end of file