Class LogEntry
- Namespace
- Auth0.ManagementApi.Models
- Assembly
- Auth0.ManagementApi.dll
Information about a log entry
public class LogEntry
- Inheritance
-
LogEntry
- Inherited Members
Properties
ClientId
The identifier of the client
[JsonProperty("client_id")]
public string ClientId { get; set; }
Property Value
ClientName
The name of the client
[JsonProperty("client_name")]
public string ClientName { get; set; }
Property Value
Connection
The name of the connection
[JsonProperty("connection")]
public string Connection { get; set; }
Property Value
ConnectionId
The id of the connection
[JsonProperty("connection_id")]
public string ConnectionId { get; set; }
Property Value
Date
The date when the event was created
[JsonProperty("date")]
public DateTime Date { get; set; }
Property Value
Description
A description for the event
[JsonProperty("description")]
public string Description { get; set; }
Property Value
Details
Additional (and very useful) details about the event.
[JsonProperty("details")]
public dynamic Details { get; set; }
Property Value
- dynamic
HostName
The hostname for the request.
[JsonProperty("hostname")]
public string HostName { get; set; }
Property Value
Id
The unique identifier for the log entry
[JsonProperty("_id")]
public string Id { get; set; }
Property Value
ImpersonatorUserId
The User ID of the user for an impersonation request.
[JsonProperty("impersonator_user_id")]
public string ImpersonatorUserId { get; set; }
Property Value
ImpersonatorUserName
The Username of the user for an impersonation request.
[JsonProperty("impersonator_user_name")]
public string ImpersonatorUserName { get; set; }
Property Value
IpAddress
The IP address of the log event source
[JsonProperty("ip")]
public string IpAddress { get; set; }
Property Value
IsMobile
Whether the event was from a mobile device.
[JsonProperty("isMobile")]
public bool? IsMobile { get; set; }
Property Value
- bool?
LocationInfo
Additional details about the event's ip trace location. If the ip matches either as private or localhost it returns an empty object
[JsonProperty("location_info")]
public dynamic LocationInfo { get; set; }
Property Value
- dynamic
Strategy
The strategy used
[JsonProperty("strategy")]
public string Strategy { get; set; }
Property Value
StrategyType
The strategy type
[JsonProperty("strategy_type")]
public string StrategyType { get; set; }
Property Value
Type
The log event type
[JsonProperty("type")]
public string Type { get; set; }
Property Value
UserAgent
The user's browser user-agent
[JsonProperty("user_agent")]
public string UserAgent { get; set; }
Property Value
UserId
The user's unique identifier
[JsonProperty("user_id")]
public string UserId { get; set; }
Property Value
UserName
The user's name
[JsonProperty("user_name")]
public string UserName { get; set; }