-
Notifications
You must be signed in to change notification settings - Fork 1
/
match_score_breakdown_2017_alliance.go
79 lines (44 loc) · 2.37 KB
/
match_score_breakdown_2017_alliance.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* 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 MatchScoreBreakdown2017Alliance struct {
AutoPoints int32 `json:"autoPoints,omitempty"`
TeleopPoints int32 `json:"teleopPoints,omitempty"`
FoulPoints int32 `json:"foulPoints,omitempty"`
AdjustPoints int32 `json:"adjustPoints,omitempty"`
TotalPoints int32 `json:"totalPoints,omitempty"`
Robot1Auto string `json:"robot1Auto,omitempty"`
Robot2Auto string `json:"robot2Auto,omitempty"`
Robot3Auto string `json:"robot3Auto,omitempty"`
Rotor1Auto bool `json:"rotor1Auto,omitempty"`
Rotor2Auto bool `json:"rotor2Auto,omitempty"`
AutoFuelLow int32 `json:"autoFuelLow,omitempty"`
AutoFuelHigh int32 `json:"autoFuelHigh,omitempty"`
AutoMobilityPoints int32 `json:"autoMobilityPoints,omitempty"`
AutoRotorPoints int32 `json:"autoRotorPoints,omitempty"`
AutoFuelPoints int32 `json:"autoFuelPoints,omitempty"`
TeleopFuelPoints int32 `json:"teleopFuelPoints,omitempty"`
TeleopFuelLow int32 `json:"teleopFuelLow,omitempty"`
TeleopFuelHigh int32 `json:"teleopFuelHigh,omitempty"`
TeleopRotorPoints int32 `json:"teleopRotorPoints,omitempty"`
KPaRankingPointAchieved bool `json:"kPaRankingPointAchieved,omitempty"`
TeleopTakeoffPoints int32 `json:"teleopTakeoffPoints,omitempty"`
KPaBonusPoints int32 `json:"kPaBonusPoints,omitempty"`
RotorBonusPoints int32 `json:"rotorBonusPoints,omitempty"`
Rotor1Engaged bool `json:"rotor1Engaged,omitempty"`
Rotor2Engaged bool `json:"rotor2Engaged,omitempty"`
Rotor3Engaged bool `json:"rotor3Engaged,omitempty"`
Rotor4Engaged bool `json:"rotor4Engaged,omitempty"`
RotorRankingPointAchieved bool `json:"rotorRankingPointAchieved,omitempty"`
TechFoulCount int32 `json:"techFoulCount,omitempty"`
FoulCount int32 `json:"foulCount,omitempty"`
TouchpadNear string `json:"touchpadNear,omitempty"`
TouchpadMiddle string `json:"touchpadMiddle,omitempty"`
TouchpadFar string `json:"touchpadFar,omitempty"`
}