Table of Contents

Class AccessTokenResponse

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

Represents an access token response.

public class AccessTokenResponse : TokenBase
Inheritance
AccessTokenResponse
Inherited Members

Properties

ExpiresIn

Expiration time in seconds.

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

Property Value

int

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