-
Notifications
You must be signed in to change notification settings - Fork 1
/
event_ranking.go
22 lines (17 loc) · 978 Bytes
/
event_ranking.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
* 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.04.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package swagger
type EventRanking struct {
// List of rankings at the event.
Rankings []EventRankingRankings `json:"rankings"`
// List of special TBA-generated values provided in the `extra_stats` array for each item.
ExtraStatsInfo []EventRankingExtraStatsInfo `json:"extra_stats_info,omitempty"`
// List of year-specific values provided in the `sort_orders` array for each team.
SortOrderInfo []EventRankingSortOrderInfo `json:"sort_order_info"`
}