-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_event_ranking_rankings.go
28 lines (27 loc) · 1.33 KB
/
model_event_ranking_rankings.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* The Blue Alliance API v3
*
* # Overview Information and statistics about FIRST Robotics Competition teams and events. # Authentication All endpoints require an Auth Key to be passed in the header `X-TBA-Auth-Key`. If you do not have an auth key yet, you can obtain one from your [Account Page](/account). A `User-Agent` header may need to be set to prevent a 403 Unauthorized error.
*
* API version: 3.5
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package openapi
// EventRankingRankings struct for EventRankingRankings
type EventRankingRankings struct {
// Number of matches played by this team.
MatchesPlayed int32 `json:"matches_played"`
// The average match score during qualifications. Year specific. May be null if not relevant for a given year.
QualAverage int32 `json:"qual_average,omitempty"`
// Additional special data on the team's performance calculated by TBA.
ExtraStats []float32 `json:"extra_stats,omitempty"`
// Additional year-specific information, may be null. See parent `sort_order_info` for details.
SortOrders []float32 `json:"sort_orders,omitempty"`
Record WltRecord `json:"record"`
// The team's rank at the event as provided by FIRST.
Rank int32 `json:"rank"`
// Number of times disqualified.
Dq int32 `json:"dq"`
// The team with this rank.
TeamKey string `json:"team_key"`
}