Aydsko iRacing Data API
Show / Hide Table of Contents

Class RecapStatistics

Statistics for the member recap.

Inheritance
object
RecapStatistics
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 RecapStatistics

Properties

AverageFinishPosition

Average finish position for the member over the period.

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

AverageStartPosition

Average starting position for the member over the period.

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

FavoriteCar

The member's favorite car in the period.

Declaration
[JsonPropertyName("favorite_car")]
public RecapFavoriteCar FavoriteCar { get; set; }
Property Value
Type Description
RecapFavoriteCar

FavoriteTrack

The member's favorite track in the period.

Declaration
[JsonPropertyName("favorite_track")]
public RecapFavoriteTrack FavoriteTrack { get; set; }
Property Value
Type Description
RecapFavoriteTrack

NumberOfStarts

Total number of starts the member made during the period.

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

NumberOfTop5Finishes

Number of times the member finished in the top 5.

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

NumberOfWins

Number of wins that the member had.

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

TotalLaps

Total number of laps driven by the member during the period.

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

TotalLapsLed

Total number of laps led by the member during the period.

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