Skip to content

Commit

Permalink
Added missing fields to LogEntry (#766) (#767)
Browse files Browse the repository at this point in the history
  • Loading branch information
kailash-b authored Jan 20, 2025
2 parents 4e3b1fc + ff3c970 commit 68e0af2
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/Auth0.ManagementApi/Models/LogEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,34 @@ public class LogEntry
/// </summary>
[JsonProperty("user_name")]
public string UserName { get; set; }
/// <summary>
/// The IP address of the Client
/// </summary>
[JsonProperty("client_ip")]
public string ClientIpAddress { get; set; }

/// <summary>
/// API audience the event applies to
/// </summary>
[JsonProperty("audience")]
public string Audience { get; set; }

/// <summary>
/// Scope permissions applied to the event
/// </summary>
[JsonProperty("scope")]
public string Scope { get; set; }

/// <summary>
/// Unique ID of the event
/// </summary>
[JsonProperty("log_id")]
public string LogId { get; set; }

/// <summary>
/// The tenant in which the log event belongs to
/// </summary>
[JsonProperty("tenant_name")]
public string TenantName { get; set; }
}
}

0 comments on commit 68e0af2

Please sign in to comment.