Table of Contents

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

DateTime?

Authentication

Details about authentication signals obtained during the login flow

[JsonProperty("authentication")]
public Authentication Authentication { get; set; }

Property Value

Authentication

Clients

Client details for the session

[JsonProperty("clients")]
public IList<ClientDetails> Clients { get; set; }

Property Value

IList<ClientDetails>

LastInteractedAt

The date and time last successful user interaction with the session

[JsonProperty("last_interacted_at")]
public DateTime? LastInteractedAt { get; set; }

Property Value

DateTime?

UpdatedAt

The date and time when the session was last updated

[JsonProperty("updated_at")]
public DateTime? UpdatedAt { get; set; }

Property Value

DateTime?