Table of Contents

Class AccessTokenResponse

Namespace
Auth0.AuthenticationApi.Models
Assembly
Auth0.AuthenticationApi.dll

Represents an access token response.

public class AccessTokenResponse : TokenBase
Inheritance
AccessTokenResponse
Derived
Inherited Members

Properties

ExpiresIn

Expiration time in seconds.

[JsonProperty("expires_in")]
public int ExpiresIn { get; set; }

Property Value

int

Headers

public IDictionary<string, IEnumerable<string>> Headers { get; set; }

Property Value

IDictionary<string, IEnumerable<string>>

IdToken

Identifier token.

[JsonProperty("id_token")]
public string IdToken { get; set; }

Property Value

string

RefreshToken

Refresh token.

[JsonProperty("refresh_token")]
public string RefreshToken { get; set; }

Property Value

string