Table of Contents

Class RefreshTokenInformation

Namespace
Auth0.ManagementApi.Models.RefreshTokens
Assembly
Auth0.ManagementApi.dll
public class RefreshTokenInformation : SessionsBase
Inheritance
RefreshTokenInformation
Inherited Members

Properties

ClientId

ID of the client application granted with this refresh token

[JsonProperty("client_id")]
public string ClientId { get; set; }

Property Value

string

LastExchangedAt

The date and time when the refresh token was last exchanged

[JsonProperty("last_exchanged_at")]
public DateTime? LastExchangedAt { get; set; }

Property Value

DateTime?

ResourceServers

A list of the resource server IDs associated to this refresh-token and their granted scopes

[JsonProperty("resource_servers")]
public IList<ResourceServer> ResourceServers { get; set; }

Property Value

IList<ResourceServer>

Rotating

True if the token is a rotating refresh token

[JsonProperty("rotating")]
public bool? Rotating { get; set; }

Property Value

bool?

SessionId

ID of the authenticated session used to obtain this refresh-token

[JsonProperty("session_id")]
public string SessionId { get; set; }

Property Value

string