Search Results for

    Show / Hide Table of Contents

    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()
    Namespace: Dangl.Identity.Client.App
    Assembly: Dangl.Identity.Client.App.dll
    Syntax
    public class TokenResponseGet

    Properties

    | Improve this Doc View Source

    AccessToken

    Declaration
    [JsonPropertyName("accessToken")]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
    public string AccessToken { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Error

    Declaration
    [JsonPropertyName("error")]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
    public string Error { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ErrorDescription

    Declaration
    [JsonPropertyName("errorDescription")]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
    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
    Type Description
    ResponseErrorType
    | 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.WhenWritingNull)]
    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
    Type Description
    HttpStatusCode
    | Improve this Doc View Source

    IdentityToken

    Declaration
    [JsonPropertyName("identityToken")]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
    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.WhenWritingNull)]
    public string RefreshToken { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    TokenType

    Declaration
    [JsonPropertyName("tokenType")]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
    public string TokenType { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Dangl IT GmbH