-
Notifications
You must be signed in to change notification settings - Fork 1
/
model_api_status.go
23 lines (22 loc) · 1.04 KB
/
model_api_status.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
* 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
// ApiStatus struct for ApiStatus
type ApiStatus struct {
// Year of the current FRC season.
CurrentSeason int32 `json:"current_season"`
// Maximum FRC season year for valid queries.
MaxSeason int32 `json:"max_season"`
// True if the entire FMS API provided by FIRST is down.
IsDatafeedDown bool `json:"is_datafeed_down"`
// An array of strings containing event keys of any active events that are no longer updating.
DownEvents []string `json:"down_events"`
Ios ApiStatusAppVersion `json:"ios"`
Android ApiStatusAppVersion `json:"android"`
}