Table of Contents

Class SessionsBase

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll
public class SessionsBase
Inheritance
SessionsBase
Derived
Inherited Members

Properties

CreatedAt

The date and time when the refresh token was created

[JsonProperty("created_at")]
public DateTime? CreatedAt { get; set; }

Property Value

DateTime?

Device

Device used while issuing/exchanging the refresh token/Session

[JsonProperty("device")]
public Device Device { get; set; }

Property Value

Device

ExpiresAt

The date and time when the refresh token will expire

[JsonProperty("expires_at")]
public DateTime? ExpiresAt { get; set; }

Property Value

DateTime?

Id

The ID of the refresh token

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

IdleExpiresAt

The date and time when the refresh token will expire if idle

[JsonProperty("idle_expires_at")]
public DateTime? IdleExpiresAt { get; set; }

Property Value

DateTime?

UserId

ID of the user which can be used when interacting with other APIs.

[JsonProperty("user_id")]
public string UserId { get; set; }

Property Value

string