Class Token
Properties of the Authorization token
Assembly: FpAssistantCoreScl.dll
Syntax
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
View Source
ApiProductList
Declaration
[JsonPropertyName("api_product_list")]
public string ApiProductList { get; set; }
Property Value
View Source
ApiProductListJson
Declaration
[JsonPropertyName("api_product_list_json")]
public List<string> ApiProductListJson { get; set; }
Property Value
View Source
ApplicationName
Declaration
[JsonPropertyName("application_name")]
public string ApplicationName { get; set; }
Property Value
View Source
ClientId
Client ID of the organization accessing the API
Declaration
[JsonPropertyName("client_id")]
public string ClientId { get; set; }
Property Value
View Source
DeveloperEmail
Email of the developer accessing the API
Declaration
[JsonPropertyName("developer.email")]
public string DeveloperEmail { get; set; }
Property Value
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
View Source
IssuedAt
Declaration
[JsonPropertyName("IssuedAt")]
public string IssuedAt { get; set; }
Property Value
View Source
OrganizationName
Declaration
[JsonPropertyName("organization_name")]
public string OrganizationName { get; set; }
Property Value
View Source
RefreshCount
Declaration
[JsonPropertyName("refresh_count")]
public string RefreshCount { get; set; }
Property Value
View Source
RefreshTokenExpiresIn
Declaration
[JsonPropertyName("refresh_token_expires_in")]
public string RefreshTokenExpiresIn { get; set; }
Property Value
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
View Source
Status
Declaration
[JsonPropertyName("status")]
public string Status { get; set; }
Property Value
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