Class Sessions
- Namespace
- Auth0.ManagementApi.Models.Sessions
- Assembly
- Auth0.ManagementApi.dll
public class Sessions : SessionsBase
- Inheritance
-
Sessions
- Inherited Members
Properties
AuthenticatedAt
The date and time when the session was last authenticated
[JsonProperty("authenticated_at")]
public DateTime? AuthenticatedAt { get; set; }
Property Value
Authentication
Details about authentication signals obtained during the login flow
[JsonProperty("authentication")]
public Authentication Authentication { get; set; }
Property Value
Clients
Client details for the session
[JsonProperty("clients")]
public IList<ClientDetails> Clients { get; set; }
Property Value
LastInteractedAt
The date and time last successful user interaction with the session
[JsonProperty("last_interacted_at")]
public DateTime? LastInteractedAt { get; set; }
Property Value
UpdatedAt
The date and time when the session was last updated
[JsonProperty("updated_at")]
public DateTime? UpdatedAt { get; set; }