Aydsko iRacing Data API
Show / Hide Table of Contents

Class LoginResponse

Result of a login request.

Inheritance
object
LoginResponse
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Aydsko.iRacingData
Assembly: Aydsko.iRacingData.dll
Syntax
public class LoginResponse

Properties

AuthenticationCode

Declaration
[JsonPropertyName("authcode")]
[JsonConverter(typeof(StringFromStringOrNumberConverter))]
public string AuthenticationCode { get; set; }
Property Value
Type Description
string

AutoLoginSeries

Declaration
[JsonPropertyName("autoLoginSeries")]
public object? AutoLoginSeries { get; set; }
Property Value
Type Description
object

AutoLoginToken

Declaration
[JsonPropertyName("autoLoginToken")]
public object? AutoLoginToken { get; set; }
Property Value
Type Description
object

CustomerId

Unique identifier of the customer's account.

Declaration
[JsonPropertyName("custId")]
public int? CustomerId { get; set; }
Property Value
Type Description
int?
Remarks

Contains null if the authentication was not successful.

Email

Customer's email address.

Declaration
[JsonPropertyName("email")]
public string? Email { get; set; }
Property Value
Type Description
string

IsInactive

Declaration
[JsonPropertyName("inactive")]
public bool? IsInactive { get; set; }
Property Value
Type Description
bool?

Message

Declaration
[JsonPropertyName("message")]
public string? Message { get; set; }
Property Value
Type Description
string

SsoCookieDomain

Declaration
[JsonPropertyName("ssoCookieDomain")]
public string? SsoCookieDomain { get; set; }
Property Value
Type Description
string

SsoCookieName

Declaration
[JsonPropertyName("ssoCookieName")]
public string? SsoCookieName { get; set; }
Property Value
Type Description
string

SsoCookiePath

Declaration
[JsonPropertyName("ssoCookiePath")]
public string? SsoCookiePath { get; set; }
Property Value
Type Description
string

SsoCookieValue

Declaration
[JsonPropertyName("ssoCookieValue")]
public string? SsoCookieValue { get; set; }
Property Value
Type Description
string

Success

Declaration
[JsonIgnore]
public bool Success { get; }
Property Value
Type Description
bool

VerificationRequired

Indicates that CAPTCHA verification is required.

Declaration
[JsonPropertyName("verificationRequired")]
public bool? VerificationRequired { get; set; }
Property Value
Type Description
bool?
Remarks

Authentication from this IP Address will continue to fail until the user authenticates with a browser and completes the CAPTCHA.

In this article
Back to top Generated by DocFX