From ff3c9702a4f8615dc4c832e32d6097b970704701 Mon Sep 17 00:00:00 2001 From: Mohsen Seifi Date: Fri, 17 Jan 2025 15:22:20 +0000 Subject: [PATCH] Added missing fields --- src/Auth0.ManagementApi/Models/LogEntry.cs | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/Auth0.ManagementApi/Models/LogEntry.cs b/src/Auth0.ManagementApi/Models/LogEntry.cs index 0daf2c17c..466685816 100644 --- a/src/Auth0.ManagementApi/Models/LogEntry.cs +++ b/src/Auth0.ManagementApi/Models/LogEntry.cs @@ -128,5 +128,34 @@ 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