Show / Hide Table of Contents

Class Token

Properties of the Authorization token

Inheritance
object
Token
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: FpAssistantCore.Faa.Nms
Assembly: FpAssistantCoreScl.dll
Syntax
public class Token

Properties

View Source

AccessToken

The access token string as issued by the authorization server

Declaration
[JsonPropertyName("access_token")]
public string AccessToken { get; set; }
Property Value
Type Description
string
View Source

ApiProductList

List of products

Declaration
[JsonPropertyName("api_product_list")]
public string ApiProductList { get; set; }
Property Value
Type Description
string
View Source

ApiProductListJson

Declaration
[JsonPropertyName("api_product_list_json")]
public List<string> ApiProductListJson { get; set; }
Property Value
Type Description
List<string>
View Source

ApplicationName

Declaration
[JsonPropertyName("application_name")]
public string ApplicationName { get; set; }
Property Value
Type Description
string
View Source

ClientId

Client ID of the organization accessing the API

Declaration
[JsonPropertyName("client_id")]
public string ClientId { get; set; }
Property Value
Type Description
string
View Source

DeveloperEmail

Email of the developer accessing the API

Declaration
[JsonPropertyName("developer.email")]
public string DeveloperEmail { get; set; }
Property Value
Type Description
string
View Source

ExpiresIn

If the access token expires, the server should reply with the duration of time the access token is granted for

Declaration
[JsonPropertyName("expires_in")]
public string ExpiresIn { get; set; }
Property Value
Type Description
string
View Source

IssuedAt

Declaration
[JsonPropertyName("IssuedAt")]
public string IssuedAt { get; set; }
Property Value
Type Description
string
View Source

OrganizationName

Name of the organization

Declaration
[JsonPropertyName("organization_name")]
public string OrganizationName { get; set; }
Property Value
Type Description
string
View Source

RefreshCount

Declaration
[JsonPropertyName("refresh_count")]
public string RefreshCount { get; set; }
Property Value
Type Description
string
View Source

RefreshTokenExpiresIn

Declaration
[JsonPropertyName("refresh_token_expires_in")]
public string RefreshTokenExpiresIn { get; set; }
Property Value
Type Description
string
View Source

Scope

If the scope the user granted is identical to the scope the app requested

Declaration
[JsonPropertyName("scope")]
public string Scope { get; set; }
Property Value
Type Description
string
View Source

Status

Declaration
[JsonPropertyName("status")]
public string Status { get; set; }
Property Value
Type Description
string
View Source

TokenType

The type of token this is, typically just the string Bearer

Declaration
[JsonPropertyName("token_type")]
public string TokenType { get; set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Copyright 2018-2026 CADology Limited