Class GetSessionResponseContent
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
[Serializable]
public record GetSessionResponseContent : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<GetSessionResponseContent>
- Inheritance
-
GetSessionResponseContent
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
AuthenticatedAt
[JsonPropertyName("authenticated_at")]
public SessionDate? AuthenticatedAt { get; set; }
Property Value
Authentication
[JsonPropertyName("authentication")]
public SessionAuthenticationSignals? Authentication { get; set; }
Property Value
Clients
List of client details for the session
[JsonPropertyName("clients")]
public IEnumerable<SessionClientMetadata>? Clients { get; set; }
Property Value
Cookie
[JsonPropertyName("cookie")]
public SessionCookieMetadata? Cookie { get; set; }
Property Value
CreatedAt
[JsonPropertyName("created_at")]
public SessionDate? CreatedAt { get; set; }
Property Value
Device
[JsonPropertyName("device")]
public SessionDeviceMetadata? Device { get; set; }
Property Value
ExpiresAt
[JsonPropertyName("expires_at")]
public SessionDate? ExpiresAt { get; set; }
Property Value
Id
The ID of the session
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
IdleExpiresAt
[JsonPropertyName("idle_expires_at")]
public SessionDate? IdleExpiresAt { get; set; }
Property Value
LastInteractedAt
[JsonPropertyName("last_interacted_at")]
public SessionDate? LastInteractedAt { get; set; }
Property Value
SessionMetadata
[JsonPropertyName("session_metadata")]
public Optional<Dictionary<string, object?>?> SessionMetadata { get; set; }
Property Value
UpdatedAt
[JsonPropertyName("updated_at")]
public SessionDate? UpdatedAt { get; set; }
Property Value
UserId
ID of the user which can be used when interacting with other APIs.
[JsonPropertyName("user_id")]
public string? UserId { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.