Aydsko iRacing Data API
Show / Hide Table of Contents

Class DataResponse<TData>

Inheritance
object
DataResponse<TData>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Aydsko.iRacingData.Common
Assembly: Aydsko.iRacingData.dll
Syntax
public class DataResponse<TData>
Type Parameters
Name Description
TData

Properties

Data

Data returned from the API call.

Declaration
public TData Data { get; set; }
Property Value
Type Description
TData

DataExpires

Indicates when the server's cache of the data will expire.

Declaration
public DateTimeOffset? DataExpires { get; set; }
Property Value
Type Description
DateTimeOffset?

RateLimitRemaining

Amount of rate limit remaining.

Declaration
public int? RateLimitRemaining { get; set; }
Property Value
Type Description
int?

RateLimitReset

Instant at which the rate limit will be reset.

Declaration
public DateTimeOffset? RateLimitReset { get; set; }
Property Value
Type Description
DateTimeOffset?

TotalRateLimit

The current total rate limit.

Declaration
public int? TotalRateLimit { get; set; }
Property Value
Type Description
int?
In this article
Back to top Generated by DocFX