Aydsko iRacing Data API
Show / Hide Table of Contents

Class MemberRecap

A summary of statistics about either a member's year or season.

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

Properties

CustomerId

iRacing Customer Id the statistics relate to.

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

Season

The season the statistics were for, if the search was season-specific. It will be null if the statistics are for the whole year.

Declaration
[JsonPropertyName("season")]
public int? Season { get; set; }
Property Value
Type Description
int?

Statistics

The statistics themselves.

Declaration
[JsonPropertyName("stats")]
public RecapStatistics Statistics { get; set; }
Property Value
Type Description
RecapStatistics

Success

Indicates if the query was successful.

Declaration
[JsonPropertyName("success")]
public bool Success { get; set; }
Property Value
Type Description
bool

Year

The year the statistics are for.

Declaration
[JsonPropertyName("year")]
public int Year { get; set; }
Property Value
Type Description
int
In this article
Back to top Generated by DocFX