Class TokenResponseGet
Inheritance
System.Object
TokenResponseGet
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Dangl.Identity.Client.App.dll
Syntax
public class TokenResponseGet
Properties
|
Improve this Doc
View Source
AccessToken
Declaration
[JsonPropertyName("accessToken")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string AccessToken { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
Error
Declaration
[JsonPropertyName("error")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Error { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
ErrorDescription
Declaration
[JsonPropertyName("errorDescription")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string ErrorDescription { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
ErrorType
Declaration
[JsonPropertyName("errorType")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(JsonStringEnumConverter))]
public ResponseErrorType ErrorType { get; set; }
Property Value
|
Improve this Doc
View Source
ExpiresIn
Declaration
[JsonPropertyName("expiresIn")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public long ExpiresIn { get; set; }
Property Value
Type |
Description |
System.Int64 |
|
|
Improve this Doc
View Source
HttpErrorReason
Declaration
[JsonPropertyName("httpErrorReason")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string HttpErrorReason { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
HttpStatusCode
Declaration
[JsonPropertyName("httpStatusCode")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(JsonStringEnumConverter))]
public HttpStatusCode HttpStatusCode { get; set; }
Property Value
|
Improve this Doc
View Source
IdentityToken
Declaration
[JsonPropertyName("identityToken")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string IdentityToken { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
IsError
Declaration
[JsonPropertyName("isError")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
public bool IsError { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
|
Improve this Doc
View Source
RefreshToken
Declaration
[JsonPropertyName("refreshToken")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string RefreshToken { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Improve this Doc
View Source
TokenType
Declaration
[JsonPropertyName("tokenType")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string TokenType { get; set; }
Property Value
Type |
Description |
System.String |
|