Skip to content

Commit

Permalink
Added missing fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohsens22 committed Jan 17, 2025
1 parent 4e3b1fc commit ff3c970
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 ff3c970

Please sign in to comment.