ftc_events_client 0.2.2 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +101 -5
  3. data/build.sh +0 -0
  4. data/config.json +1 -1
  5. data/docs/AdvancementApi.md +120 -0
  6. data/docs/AdvancementModel.md +9 -0
  7. data/docs/AdvancementSlot.md +13 -0
  8. data/docs/AdvancementSourceModel.md +10 -0
  9. data/docs/AllianceModelVersion2.md +3 -0
  10. data/docs/AllianceSelectionApi.md +56 -1
  11. data/docs/AllianceSelectionDetailModel.md +8 -0
  12. data/docs/ApiAdvancementStatus.md +6 -0
  13. data/docs/AutoNavigation.md +6 -0
  14. data/docs/AwardAssignmentModel.md +1 -0
  15. data/docs/AwardsApi.md +1 -1
  16. data/docs/Coordinate.md +12 -0
  17. data/docs/CoordinateEqualityComparer.md +6 -0
  18. data/docs/CoordinateSequence.md +17 -0
  19. data/docs/CoordinateSequenceFactory.md +7 -0
  20. data/docs/Dimension.md +6 -0
  21. data/docs/EndGameLocation.md +6 -0
  22. data/docs/Envelope.md +18 -0
  23. data/docs/FieldSide.md +6 -0
  24. data/docs/GeneralApi.md +1 -1
  25. data/docs/Geometry.md +30 -0
  26. data/docs/GeometryFactory.md +10 -0
  27. data/docs/GeometryOverlay.md +6 -0
  28. data/docs/JunctionElement.md +6 -0
  29. data/docs/LeaguesApi.md +1 -1
  30. data/docs/MatchResultsApi.md +1 -1
  31. data/docs/NtsGeometryServices.md +11 -0
  32. data/docs/OgcGeometryType.md +6 -0
  33. data/docs/Ordinates.md +6 -0
  34. data/docs/Point.md +35 -0
  35. data/docs/PrecisionModel.md +11 -0
  36. data/docs/PrecisionModels.md +6 -0
  37. data/docs/RankingsApi.md +1 -1
  38. data/docs/ScheduleApi.md +1 -1
  39. data/docs/ScheduleHybridModelTeamVersion2.md +2 -0
  40. data/docs/ScheduleHybridModelVersion2.md +2 -0
  41. data/docs/ScheduledMatchTeamModelVersion2.md +3 -0
  42. data/docs/ScoreDetailAllianceModel2022.md +42 -0
  43. data/docs/ScoreDetailAllianceModel2023.md +44 -0
  44. data/docs/ScoreDetailModel2021.md +1 -0
  45. data/docs/ScoreDetailModel2022.md +11 -0
  46. data/docs/ScoreDetailModel2023.md +11 -0
  47. data/docs/ScoreDetailModelSinglePlayer2021.md +1 -0
  48. data/docs/ScoreDetailModelSinglePlayer2022.md +11 -0
  49. data/docs/ScoreDetailModelSinglePlayer2023.md +11 -0
  50. data/docs/ScoreDetailSinglePlayer2022.md +35 -0
  51. data/docs/ScoreDetailSinglePlayer2023.md +36 -0
  52. data/docs/SeasonDataApi.md +1 -1
  53. data/docs/SeasonEventModelVersion2.md +3 -0
  54. data/docs/SeasonLeagueModelVersion2.md +2 -0
  55. data/docs/SeasonTeamModelVersion2.md +3 -0
  56. data/docs/SelectionModel.md +9 -0
  57. data/docs/SelectionResult.md +6 -0
  58. data/docs/TeamRankingModel.md +2 -0
  59. data/ftc_events_client-0.3.0.gem +0 -0
  60. data/ftc_events_client.gemspec +1 -1
  61. data/git_push.sh +0 -0
  62. data/lib/ftc_events_client/api/advancement_api.rb +147 -0
  63. data/lib/ftc_events_client/api/alliance_selection_api.rb +63 -1
  64. data/lib/ftc_events_client/api/awards_api.rb +1 -1
  65. data/lib/ftc_events_client/api/general_api.rb +1 -1
  66. data/lib/ftc_events_client/api/leagues_api.rb +1 -1
  67. data/lib/ftc_events_client/api/match_results_api.rb +1 -1
  68. data/lib/ftc_events_client/api/rankings_api.rb +1 -1
  69. data/lib/ftc_events_client/api/schedule_api.rb +1 -1
  70. data/lib/ftc_events_client/api/season_data_api.rb +1 -1
  71. data/lib/ftc_events_client/api_client.rb +3 -13
  72. data/lib/ftc_events_client/api_error.rb +1 -1
  73. data/lib/ftc_events_client/configuration.rb +3 -3
  74. data/lib/ftc_events_client/models/advancement_model.rb +231 -0
  75. data/lib/ftc_events_client/models/advancement_slot.rb +269 -0
  76. data/lib/ftc_events_client/models/advancement_source_model.rb +242 -0
  77. data/lib/ftc_events_client/models/alliance_model_version2.rb +32 -2
  78. data/lib/ftc_events_client/models/alliance_score_2020.rb +1 -1
  79. data/lib/ftc_events_client/models/alliance_selection_detail_model.rb +218 -0
  80. data/lib/ftc_events_client/models/alliance_selection_model_version2.rb +1 -1
  81. data/lib/ftc_events_client/models/api_advancement_status.rb +31 -0
  82. data/lib/ftc_events_client/models/api_index_model.rb +1 -1
  83. data/lib/ftc_events_client/models/auto_navigated_status.rb +1 -1
  84. data/lib/ftc_events_client/models/auto_navigation.rb +29 -0
  85. data/lib/ftc_events_client/models/award_assignment_model.rb +12 -2
  86. data/lib/ftc_events_client/models/awards_model.rb +1 -1
  87. data/lib/ftc_events_client/models/barcode_element.rb +1 -1
  88. data/lib/ftc_events_client/models/coordinate.rb +251 -0
  89. data/lib/ftc_events_client/models/coordinate_equality_comparer.rb +197 -0
  90. data/lib/ftc_events_client/models/coordinate_sequence.rb +296 -0
  91. data/lib/ftc_events_client/models/coordinate_sequence_factory.rb +206 -0
  92. data/lib/ftc_events_client/models/dimension.rb +33 -0
  93. data/lib/ftc_events_client/models/end_game_location.rb +29 -0
  94. data/lib/ftc_events_client/models/endgame_parked_status.rb +1 -1
  95. data/lib/ftc_events_client/models/envelope.rb +305 -0
  96. data/lib/ftc_events_client/models/event_match_results_model_version2.rb +1 -1
  97. data/lib/ftc_events_client/models/event_rankings_model.rb +1 -1
  98. data/lib/ftc_events_client/models/event_schedule_hybrid_model_version2.rb +1 -1
  99. data/lib/ftc_events_client/models/event_schedule_model_version2.rb +1 -1
  100. data/lib/ftc_events_client/models/field_side.rb +28 -0
  101. data/lib/ftc_events_client/models/ftc_event_level.rb +1 -1
  102. data/lib/ftc_events_client/models/geometry.rb +418 -0
  103. data/lib/ftc_events_client/models/geometry_factory.rb +233 -0
  104. data/lib/ftc_events_client/models/geometry_overlay.rb +197 -0
  105. data/lib/ftc_events_client/models/junction_element.rb +32 -0
  106. data/lib/ftc_events_client/models/league_member_list_model.rb +1 -1
  107. data/lib/ftc_events_client/models/match_result_model_version2.rb +1 -1
  108. data/lib/ftc_events_client/models/match_result_team_model_version2.rb +1 -1
  109. data/lib/ftc_events_client/models/match_scores_model.rb +1 -1
  110. data/lib/ftc_events_client/models/nts_geometry_services.rb +242 -0
  111. data/lib/ftc_events_client/models/ogc_geometry_type.rb +42 -0
  112. data/lib/ftc_events_client/models/one_of_match_scores_model_match_scores_items.rb +1 -1
  113. data/lib/ftc_events_client/models/ordinates.rb +66 -0
  114. data/lib/ftc_events_client/models/point.rb +463 -0
  115. data/lib/ftc_events_client/models/precision_model.rb +242 -0
  116. data/lib/ftc_events_client/models/precision_models.rb +29 -0
  117. data/lib/ftc_events_client/models/schedule_hybrid_model_team_version2.rb +26 -6
  118. data/lib/ftc_events_client/models/schedule_hybrid_model_version2.rb +22 -2
  119. data/lib/ftc_events_client/models/scheduled_match_model_version2.rb +1 -1
  120. data/lib/ftc_events_client/models/scheduled_match_team_model_version2.rb +32 -2
  121. data/lib/ftc_events_client/models/score_detail_alliance_model_2020.rb +1 -1
  122. data/lib/ftc_events_client/models/score_detail_alliance_model_2021.rb +1 -1
  123. data/lib/ftc_events_client/models/score_detail_alliance_model_2022.rb +540 -0
  124. data/lib/ftc_events_client/models/score_detail_alliance_model_2023.rb +540 -0
  125. data/lib/ftc_events_client/models/score_detail_model_2019.rb +1 -1
  126. data/lib/ftc_events_client/models/score_detail_model_2020.rb +1 -1
  127. data/lib/ftc_events_client/models/score_detail_model_2021.rb +11 -2
  128. data/lib/ftc_events_client/models/score_detail_model_2022.rb +245 -0
  129. data/lib/ftc_events_client/models/score_detail_model_2023.rb +245 -0
  130. data/lib/ftc_events_client/models/score_detail_model_alliance_2019.rb +1 -1
  131. data/lib/ftc_events_client/models/score_detail_model_single_player_2020.rb +1 -1
  132. data/lib/ftc_events_client/models/score_detail_model_single_player_2021.rb +11 -2
  133. data/lib/ftc_events_client/models/score_detail_model_single_player_2022.rb +242 -0
  134. data/lib/ftc_events_client/models/score_detail_model_single_player_2023.rb +242 -0
  135. data/lib/ftc_events_client/models/score_detail_single_player_2021.rb +1 -1
  136. data/lib/ftc_events_client/models/score_detail_single_player_2022.rb +474 -0
  137. data/lib/ftc_events_client/models/score_detail_single_player_2023.rb +467 -0
  138. data/lib/ftc_events_client/models/season_award_listings_model.rb +1 -1
  139. data/lib/ftc_events_client/models/season_awards_model.rb +1 -1
  140. data/lib/ftc_events_client/models/season_event_listings_model_version2.rb +1 -1
  141. data/lib/ftc_events_client/models/season_event_model_version2.rb +30 -2
  142. data/lib/ftc_events_client/models/season_league_listings_model_version2.rb +1 -1
  143. data/lib/ftc_events_client/models/season_league_model_version2.rb +22 -2
  144. data/lib/ftc_events_client/models/season_summary_model_championship.rb +1 -1
  145. data/lib/ftc_events_client/models/season_summary_model_version2.rb +1 -1
  146. data/lib/ftc_events_client/models/season_team_listings_model_version2.rb +1 -1
  147. data/lib/ftc_events_client/models/season_team_model_version2.rb +36 -6
  148. data/lib/ftc_events_client/models/selection_model.rb +224 -0
  149. data/lib/ftc_events_client/models/selection_result.rb +29 -0
  150. data/lib/ftc_events_client/models/stone.rb +1 -1
  151. data/lib/ftc_events_client/models/team_ranking_model.rb +22 -2
  152. data/lib/ftc_events_client/version.rb +2 -2
  153. data/lib/ftc_events_client.rb +36 -1
  154. data/spec/api/advancement_api_spec.rb +61 -0
  155. data/spec/models/advancement_model_spec.rb +52 -0
  156. data/spec/models/advancement_slot_spec.rb +76 -0
  157. data/spec/models/advancement_source_model_spec.rb +58 -0
  158. data/spec/models/alliance_selection_detail_model_spec.rb +46 -0
  159. data/spec/models/api_advancement_status_spec.rb +34 -0
  160. data/spec/models/auto_navigation_spec.rb +34 -0
  161. data/spec/models/coordinate_equality_comparer_spec.rb +34 -0
  162. data/spec/models/coordinate_sequence_factory_spec.rb +40 -0
  163. data/spec/models/coordinate_sequence_spec.rb +100 -0
  164. data/spec/models/coordinate_spec.rb +70 -0
  165. data/spec/models/dimension_spec.rb +34 -0
  166. data/spec/models/end_game_location_spec.rb +34 -0
  167. data/spec/models/envelope_spec.rb +106 -0
  168. data/spec/models/field_side_spec.rb +34 -0
  169. data/spec/models/geometry_factory_spec.rb +58 -0
  170. data/spec/models/geometry_overlay_spec.rb +34 -0
  171. data/spec/models/geometry_spec.rb +178 -0
  172. data/spec/models/junction_element_spec.rb +34 -0
  173. data/spec/models/nts_geometry_services_spec.rb +64 -0
  174. data/spec/models/ogc_geometry_type_spec.rb +34 -0
  175. data/spec/models/ordinates_spec.rb +34 -0
  176. data/spec/models/point_spec.rb +208 -0
  177. data/spec/models/precision_model_spec.rb +64 -0
  178. data/spec/models/precision_models_spec.rb +34 -0
  179. data/spec/models/score_detail_alliance_model_2022_spec.rb +250 -0
  180. data/spec/models/score_detail_alliance_model_2023_spec.rb +262 -0
  181. data/spec/models/score_detail_model_2022_spec.rb +64 -0
  182. data/spec/models/score_detail_model_2023_spec.rb +64 -0
  183. data/spec/models/score_detail_model_single_player_2022_spec.rb +64 -0
  184. data/spec/models/score_detail_model_single_player_2023_spec.rb +64 -0
  185. data/spec/models/score_detail_single_player_2022_spec.rb +208 -0
  186. data/spec/models/score_detail_single_player_2023_spec.rb +214 -0
  187. data/spec/models/selection_model_spec.rb +52 -0
  188. data/spec/models/selection_result_spec.rb +34 -0
  189. data/update.sh +1 -1
  190. metadata +145 -3
@@ -0,0 +1,269 @@
1
+ =begin
2
+ #FTC Events API
3
+
4
+ #FTC Events API is a service to return relevant information about the _FIRST_ Tech Challenge (FTC). Information is made available from events operating around the world Information is currently made available after the conclusion of the tournament. The API will provide data as soon as it has synced, and we do not add any artificial delays. ## Documentation Notes ### Timezones All times are listed in the local time to the event venue. HTTP-date values will show their timezone. ### Query Parameters If you specify a parameter, but no value for that parameter, it will be ignored. For example, if you request `URL?teamNumber=` the `teamNumber` parameter would be ignored. For all APIs that accept a query string in addition to the base URI, the order of parameters do not matter, but the name shown in the documentation must match exactly, as does the associated value format as described in details. For response codes that are not HTTP 200 (OK), the documentation will show a body message that represents a possible response value. While the \"title\" of the HTTP Status Code will match those shown in the response codes documentation section exactly, the body of the response will be a more detailed explanation of why that status code is being returned and may not always be exactly as shown in the examples. ### Experimenting with the API This documentation is rendered at both [api-docs](https://ftc-events.firstinspires.org/api-docs) and [try-it-out](https://ftc-events.firstinspires.org/try-it-out). [api-docs](https://ftc-events.firstinspires.org/api-docs) has a three panel, easy to read layout, while [try-it-out](https://ftc-events.firstinspires.org/try-it-out) has a feature that allows you try out endpoints from within the page. Additionally, the Open API Json is availabe at [Open API](https://ftc-events.firstinspires.org/swagger/v2.0/swagger.json). This can be imported into a tool such as [Postman](https://www.postman.com) for experimentation as well. ### Last-Modified, FMS-OnlyModifiedSince, and If-Modified-Since Headers The FTC Events API utilizes the `Last-Modified` and `If-Modified-Since` Headers to communicate with consumers regarding the age of the data they are requesting. With a couple of exceptions, all calls will return a `Last-Modified` Header set with the time at which the data at that endpoint was last modified. The Header will always be set in the HTTP-date format, as described in the HTTP Protocol. There are two exceptions: the `Last-Modified` Header is not set if the endpoint returns no results (such as a request for a schedule with no matches). Consumers should keep track of the `Last-Modified` Header, and return it on subsequent calls to the same endpoint as the If-Modified-Since. The server will recognize this request, and will only return a result if the data has been modified since the last request. If no changes have been made, an HTTP 304 will be returned. If data has been modified, ALL data on that call will be returned (for \"only modified\" data, see below). The FTC Events API also allows a custom header used to filter the return data to a specific subset. This is done by specifying a `FMS-OnlyModifiedSince` header with each call. As with the `If-Modified-Since` header, consumers should keep track of the Last-Modified Header, and return it on subsequent calls to the same endpoint as the `FMS-OnlyModifiedSince` Header. The server will recognize this request, and will only return a result if the data has been modified since the last request, and, if returned, the data will only be those portions modified since the included date. If no changes, have been made, an HTTP 304 will be returned. Using this method, the server and consumer save processing time by only receiving modified data that is in need of update on the consumer side. If the Headers are improperly passed (such as the wrong Day of Week for the matching date, or a date in the future), the endpoint will simply ignore the Header and return all results. If both headers are specified, the request will be denied. ## Response Codes The FTC Events API HTTP Status Codes correspond with the [common codes](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html), but occasionally with different \"titles\". The \"title\" used by the API is shown next to each of the below possible response HTTP Status Codes. Throughout the documentation, Apiary may automatically show the common \"title\" in example returns (like \"Not Found\" for 404) but on the production server, the \"title\" will instead match those listed below. ### HTTP 200 - \"OK\" The request has succeeded. An entity corresponding to the requested resource is sent in the response. This will be returned as the HTTP Status Code for all request that succeed, even if the body is empty (such as an event that has no rankings, but with a valid season and event code were used) ### HTTP 304 - \"Not Modified\" When utilizing a Header that allows filtered data returns, such as `If-Modified-Since`, this response indicates that no data meets the request. ### HTTP 400 - \"Invalid Season Requested\"/\"Malformed Parameter Format In Request\"/\"Missing Parameter In Request\"/\"Invalid API Version Requested\": The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications. Specifically for this API, a 400 response indicates that the requested URI matches with a valid API, but one or more required parameter was malformed or invalid. Examples include an event code that is too short or team number that contains a letter. ### HTTP 401 - \"Unauthorized\" All requests against the API require authentication via a valid user token. Failing to provide one, or providing an invalid one, will warrant a 401 response. The client MAY repeat the request with a suitable Authorization header field. ### HTTP 404 - \"Invalid Event Requested\" Even though the 404 code usually indicates any not found status, a 404 will only be issued in this API when an event cannot be found for the requested season and event code. If the request didn't match a valid API or there were malformed parameters, the response would not receive a 404 but rather a 400 or 501. If this HTTP code is received, the season was a valid season and the event code matched the acceptable style of an event code, but there were no records of an event matching the combination of that season and event code. For example, HTTP 404 would be issued when the event had a different code in the requested season (the codes can change year to year based on event location). ### HTTP 500 - \"Internal Server Error\" The server encountered an unexpected condition which prevented it from fulfilling the request. This is a code sent directly by the server, and has no special alternate definition specific to this API. ### HTTP 501 - \"Request Did Not Match Any Current API Pattern\" The server does not support the functionality required to fulfill the request. Specifically, the request pattern did not match any of the possible APIs, and thus processing was discontinued. This code is also issued when too many optional parameters were included in a single request and fulfilling it would make the result confusing or misleading. Each API will specify which parameters or combination of parameters can be used at the same time. ### HTTP 503 - \"Service Unavailable\" The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay MAY be indicated in a `Retry-After` header. This code will not always appear, sometimes the server may outright refuse the connection instead. This is a code sent directly by the server, and has no special alternate definition specific to this API. ## Authorization In order to make calls against the FTC Events API, you must include an HTTP Header called `Authorization` with the value set as specified below. If a request is made without this header, processing stops and an HTTP 401 is issued. All `Authorization` headers follow the same format: ``` Authorization: Basic 000000000000000000000000000000000000000000000000000000000000 ``` Where the Zeros are replaced by your Token. The Token can be formed by taking your username and your AuthorizationKey and adding a colon. For example, if your username is `sampleuser` and your AuthorizationKey is `7eaa6338-a097-4221-ac04-b6120fcc4d49` you would have this string: ``` sampleuser:7eaa6338-a097-4221-ac04-b6120fcc4d49 ``` This string must then be encoded using Base64 Encoded to form the Token, which will be the same length as the example above, but include letters and numbers. For our example, we would have: ``` c2FtcGxldXNlcjo3ZWFhNjMzOC1hMDk3LTQyMjEtYWMwNC1iNjEyMGZjYzRkNDk= ``` Most API client libraries can handle computing the authorization header using a username and password for you NOTICE: Publicly distributing an application, code snippet, etc, that has your username and token in it, encoded or not, WILL result in your token being blocked from the API. Each user should apply for their own token. If you wish to acquire a token for your development, you may do so by requesting a token through our automated system on this website.
5
+
6
+ OpenAPI spec version: v2.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.52
10
+ =end
11
+
12
+ require 'date'
13
+
14
+ module FtcEventsClient
15
+ class AdvancementSlot
16
+ # The team number of the team earning this advancement slot. Null if no team meets the criteria.
17
+ attr_accessor :team
18
+
19
+ attr_accessor :team_id
20
+
21
+ attr_accessor :team_profile_id
22
+
23
+ # The display-friendly string representation of the number of the team earning this advancement slot. Null if no team meets the criteria.
24
+ attr_accessor :display_team
25
+
26
+ # The number of the advancement criteria as shown in GM1 section 6.2.
27
+ attr_accessor :slot
28
+
29
+ # String describing the advancement criteria as shown in GM1 section 6.2.
30
+ attr_accessor :criteria
31
+
32
+ attr_accessor :status
33
+
34
+ # Attribute mapping from ruby-style variable name to JSON key.
35
+ def self.attribute_map
36
+ {
37
+ :'team' => :'team',
38
+ :'team_id' => :'teamId',
39
+ :'team_profile_id' => :'teamProfileId',
40
+ :'display_team' => :'displayTeam',
41
+ :'slot' => :'slot',
42
+ :'criteria' => :'criteria',
43
+ :'status' => :'status'
44
+ }
45
+ end
46
+
47
+ # Attribute type mapping.
48
+ def self.openapi_types
49
+ {
50
+ :'team' => :'Object',
51
+ :'team_id' => :'Object',
52
+ :'team_profile_id' => :'Object',
53
+ :'display_team' => :'Object',
54
+ :'slot' => :'Object',
55
+ :'criteria' => :'Object',
56
+ :'status' => :'Object'
57
+ }
58
+ end
59
+
60
+ # List of attributes with nullable: true
61
+ def self.openapi_nullable
62
+ Set.new([
63
+ :'team',
64
+ :'team_id',
65
+ :'team_profile_id',
66
+ :'display_team',
67
+ :'criteria',
68
+ ])
69
+ end
70
+
71
+ # Initializes the object
72
+ # @param [Hash] attributes Model attributes in the form of hash
73
+ def initialize(attributes = {})
74
+ if (!attributes.is_a?(Hash))
75
+ fail ArgumentError, "The input argument (attributes) must be a hash in `FtcEventsClient::AdvancementSlot` initialize method"
76
+ end
77
+
78
+ # check to see if the attribute exists and convert string to symbol for hash key
79
+ attributes = attributes.each_with_object({}) { |(k, v), h|
80
+ if (!self.class.attribute_map.key?(k.to_sym))
81
+ fail ArgumentError, "`#{k}` is not a valid attribute in `FtcEventsClient::AdvancementSlot`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
82
+ end
83
+ h[k.to_sym] = v
84
+ }
85
+
86
+ if attributes.key?(:'team')
87
+ self.team = attributes[:'team']
88
+ end
89
+
90
+ if attributes.key?(:'team_id')
91
+ self.team_id = attributes[:'team_id']
92
+ end
93
+
94
+ if attributes.key?(:'team_profile_id')
95
+ self.team_profile_id = attributes[:'team_profile_id']
96
+ end
97
+
98
+ if attributes.key?(:'display_team')
99
+ self.display_team = attributes[:'display_team']
100
+ end
101
+
102
+ if attributes.key?(:'slot')
103
+ self.slot = attributes[:'slot']
104
+ end
105
+
106
+ if attributes.key?(:'criteria')
107
+ self.criteria = attributes[:'criteria']
108
+ end
109
+
110
+ if attributes.key?(:'status')
111
+ self.status = attributes[:'status']
112
+ end
113
+ end
114
+
115
+ # Show invalid properties with the reasons. Usually used together with valid?
116
+ # @return Array for valid properties with the reasons
117
+ def list_invalid_properties
118
+ invalid_properties = Array.new
119
+ invalid_properties
120
+ end
121
+
122
+ # Check to see if the all the properties in the model are valid
123
+ # @return true if the model is valid
124
+ def valid?
125
+ true
126
+ end
127
+
128
+ # Checks equality by comparing each attribute.
129
+ # @param [Object] Object to be compared
130
+ def ==(o)
131
+ return true if self.equal?(o)
132
+ self.class == o.class &&
133
+ team == o.team &&
134
+ team_id == o.team_id &&
135
+ team_profile_id == o.team_profile_id &&
136
+ display_team == o.display_team &&
137
+ slot == o.slot &&
138
+ criteria == o.criteria &&
139
+ status == o.status
140
+ end
141
+
142
+ # @see the `==` method
143
+ # @param [Object] Object to be compared
144
+ def eql?(o)
145
+ self == o
146
+ end
147
+
148
+ # Calculates hash code according to all attributes.
149
+ # @return [Integer] Hash code
150
+ def hash
151
+ [team, team_id, team_profile_id, display_team, slot, criteria, status].hash
152
+ end
153
+
154
+ # Builds the object from hash
155
+ # @param [Hash] attributes Model attributes in the form of hash
156
+ # @return [Object] Returns the model itself
157
+ def self.build_from_hash(attributes)
158
+ new.build_from_hash(attributes)
159
+ end
160
+
161
+ # Builds the object from hash
162
+ # @param [Hash] attributes Model attributes in the form of hash
163
+ # @return [Object] Returns the model itself
164
+ def build_from_hash(attributes)
165
+ return nil unless attributes.is_a?(Hash)
166
+ self.class.openapi_types.each_pair do |key, type|
167
+ if type =~ /\AArray<(.*)>/i
168
+ # check to ensure the input is an array given that the attribute
169
+ # is documented as an array but the input is not
170
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
171
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
172
+ end
173
+ elsif !attributes[self.class.attribute_map[key]].nil?
174
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
175
+ elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
176
+ self.send("#{key}=", nil)
177
+ end
178
+ end
179
+
180
+ self
181
+ end
182
+
183
+ # Deserializes the data based on type
184
+ # @param string type Data type
185
+ # @param string value Value to be deserialized
186
+ # @return [Object] Deserialized data
187
+ def _deserialize(type, value)
188
+ case type.to_sym
189
+ when :DateTime
190
+ DateTime.parse(value)
191
+ when :Date
192
+ Date.parse(value)
193
+ when :String
194
+ value.to_s
195
+ when :Integer
196
+ value.to_i
197
+ when :Float
198
+ value.to_f
199
+ when :Boolean
200
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
201
+ true
202
+ else
203
+ false
204
+ end
205
+ when :Object
206
+ # generic object (usually a Hash), return directly
207
+ value
208
+ when /\AArray<(?<inner_type>.+)>\z/
209
+ inner_type = Regexp.last_match[:inner_type]
210
+ value.map { |v| _deserialize(inner_type, v) }
211
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
212
+ k_type = Regexp.last_match[:k_type]
213
+ v_type = Regexp.last_match[:v_type]
214
+ {}.tap do |hash|
215
+ value.each do |k, v|
216
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
217
+ end
218
+ end
219
+ else # model
220
+ FtcEventsClient.const_get(type).build_from_hash(value)
221
+ end
222
+ end
223
+
224
+ # Returns the string representation of the object
225
+ # @return [String] String presentation of the object
226
+ def to_s
227
+ to_hash.to_s
228
+ end
229
+
230
+ # to_body is an alias to to_hash (backward compatibility)
231
+ # @return [Hash] Returns the object in the form of hash
232
+ def to_body
233
+ to_hash
234
+ end
235
+
236
+ # Returns the object in the form of hash
237
+ # @return [Hash] Returns the object in the form of hash
238
+ def to_hash
239
+ hash = {}
240
+ self.class.attribute_map.each_pair do |attr, param|
241
+ value = self.send(attr)
242
+ if value.nil?
243
+ is_nullable = self.class.openapi_nullable.include?(attr)
244
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
245
+ end
246
+
247
+ hash[param] = _to_hash(value)
248
+ end
249
+ hash
250
+ end
251
+
252
+ # Outputs non-array value in the form of hash
253
+ # For object, use to_hash. Otherwise, just return the value
254
+ # @param [Object] value Any valid value
255
+ # @return [Hash] Returns the value in the form of hash
256
+ def _to_hash(value)
257
+ if value.is_a?(Array)
258
+ value.compact.map { |v| _to_hash(v) }
259
+ elsif value.is_a?(Hash)
260
+ {}.tap do |hash|
261
+ value.each { |k, v| hash[k] = _to_hash(v) }
262
+ end
263
+ elsif value.respond_to? :to_hash
264
+ value.to_hash
265
+ else
266
+ value
267
+ end
268
+ end end
269
+ end
@@ -0,0 +1,242 @@
1
+ =begin
2
+ #FTC Events API
3
+
4
+ #FTC Events API is a service to return relevant information about the _FIRST_ Tech Challenge (FTC). Information is made available from events operating around the world Information is currently made available after the conclusion of the tournament. The API will provide data as soon as it has synced, and we do not add any artificial delays. ## Documentation Notes ### Timezones All times are listed in the local time to the event venue. HTTP-date values will show their timezone. ### Query Parameters If you specify a parameter, but no value for that parameter, it will be ignored. For example, if you request `URL?teamNumber=` the `teamNumber` parameter would be ignored. For all APIs that accept a query string in addition to the base URI, the order of parameters do not matter, but the name shown in the documentation must match exactly, as does the associated value format as described in details. For response codes that are not HTTP 200 (OK), the documentation will show a body message that represents a possible response value. While the \"title\" of the HTTP Status Code will match those shown in the response codes documentation section exactly, the body of the response will be a more detailed explanation of why that status code is being returned and may not always be exactly as shown in the examples. ### Experimenting with the API This documentation is rendered at both [api-docs](https://ftc-events.firstinspires.org/api-docs) and [try-it-out](https://ftc-events.firstinspires.org/try-it-out). [api-docs](https://ftc-events.firstinspires.org/api-docs) has a three panel, easy to read layout, while [try-it-out](https://ftc-events.firstinspires.org/try-it-out) has a feature that allows you try out endpoints from within the page. Additionally, the Open API Json is availabe at [Open API](https://ftc-events.firstinspires.org/swagger/v2.0/swagger.json). This can be imported into a tool such as [Postman](https://www.postman.com) for experimentation as well. ### Last-Modified, FMS-OnlyModifiedSince, and If-Modified-Since Headers The FTC Events API utilizes the `Last-Modified` and `If-Modified-Since` Headers to communicate with consumers regarding the age of the data they are requesting. With a couple of exceptions, all calls will return a `Last-Modified` Header set with the time at which the data at that endpoint was last modified. The Header will always be set in the HTTP-date format, as described in the HTTP Protocol. There are two exceptions: the `Last-Modified` Header is not set if the endpoint returns no results (such as a request for a schedule with no matches). Consumers should keep track of the `Last-Modified` Header, and return it on subsequent calls to the same endpoint as the If-Modified-Since. The server will recognize this request, and will only return a result if the data has been modified since the last request. If no changes have been made, an HTTP 304 will be returned. If data has been modified, ALL data on that call will be returned (for \"only modified\" data, see below). The FTC Events API also allows a custom header used to filter the return data to a specific subset. This is done by specifying a `FMS-OnlyModifiedSince` header with each call. As with the `If-Modified-Since` header, consumers should keep track of the Last-Modified Header, and return it on subsequent calls to the same endpoint as the `FMS-OnlyModifiedSince` Header. The server will recognize this request, and will only return a result if the data has been modified since the last request, and, if returned, the data will only be those portions modified since the included date. If no changes, have been made, an HTTP 304 will be returned. Using this method, the server and consumer save processing time by only receiving modified data that is in need of update on the consumer side. If the Headers are improperly passed (such as the wrong Day of Week for the matching date, or a date in the future), the endpoint will simply ignore the Header and return all results. If both headers are specified, the request will be denied. ## Response Codes The FTC Events API HTTP Status Codes correspond with the [common codes](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html), but occasionally with different \"titles\". The \"title\" used by the API is shown next to each of the below possible response HTTP Status Codes. Throughout the documentation, Apiary may automatically show the common \"title\" in example returns (like \"Not Found\" for 404) but on the production server, the \"title\" will instead match those listed below. ### HTTP 200 - \"OK\" The request has succeeded. An entity corresponding to the requested resource is sent in the response. This will be returned as the HTTP Status Code for all request that succeed, even if the body is empty (such as an event that has no rankings, but with a valid season and event code were used) ### HTTP 304 - \"Not Modified\" When utilizing a Header that allows filtered data returns, such as `If-Modified-Since`, this response indicates that no data meets the request. ### HTTP 400 - \"Invalid Season Requested\"/\"Malformed Parameter Format In Request\"/\"Missing Parameter In Request\"/\"Invalid API Version Requested\": The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications. Specifically for this API, a 400 response indicates that the requested URI matches with a valid API, but one or more required parameter was malformed or invalid. Examples include an event code that is too short or team number that contains a letter. ### HTTP 401 - \"Unauthorized\" All requests against the API require authentication via a valid user token. Failing to provide one, or providing an invalid one, will warrant a 401 response. The client MAY repeat the request with a suitable Authorization header field. ### HTTP 404 - \"Invalid Event Requested\" Even though the 404 code usually indicates any not found status, a 404 will only be issued in this API when an event cannot be found for the requested season and event code. If the request didn't match a valid API or there were malformed parameters, the response would not receive a 404 but rather a 400 or 501. If this HTTP code is received, the season was a valid season and the event code matched the acceptable style of an event code, but there were no records of an event matching the combination of that season and event code. For example, HTTP 404 would be issued when the event had a different code in the requested season (the codes can change year to year based on event location). ### HTTP 500 - \"Internal Server Error\" The server encountered an unexpected condition which prevented it from fulfilling the request. This is a code sent directly by the server, and has no special alternate definition specific to this API. ### HTTP 501 - \"Request Did Not Match Any Current API Pattern\" The server does not support the functionality required to fulfill the request. Specifically, the request pattern did not match any of the possible APIs, and thus processing was discontinued. This code is also issued when too many optional parameters were included in a single request and fulfilling it would make the result confusing or misleading. Each API will specify which parameters or combination of parameters can be used at the same time. ### HTTP 503 - \"Service Unavailable\" The server is currently unable to handle the request due to a temporary overloading or maintenance of the server. The implication is that this is a temporary condition which will be alleviated after some delay. If known, the length of the delay MAY be indicated in a `Retry-After` header. This code will not always appear, sometimes the server may outright refuse the connection instead. This is a code sent directly by the server, and has no special alternate definition specific to this API. ## Authorization In order to make calls against the FTC Events API, you must include an HTTP Header called `Authorization` with the value set as specified below. If a request is made without this header, processing stops and an HTTP 401 is issued. All `Authorization` headers follow the same format: ``` Authorization: Basic 000000000000000000000000000000000000000000000000000000000000 ``` Where the Zeros are replaced by your Token. The Token can be formed by taking your username and your AuthorizationKey and adding a colon. For example, if your username is `sampleuser` and your AuthorizationKey is `7eaa6338-a097-4221-ac04-b6120fcc4d49` you would have this string: ``` sampleuser:7eaa6338-a097-4221-ac04-b6120fcc4d49 ``` This string must then be encoded using Base64 Encoded to form the Token, which will be the same length as the example above, but include letters and numbers. For our example, we would have: ``` c2FtcGxldXNlcjo3ZWFhNjMzOC1hMDk3LTQyMjEtYWMwNC1iNjEyMGZjYzRkNDk= ``` Most API client libraries can handle computing the authorization header using a username and password for you NOTICE: Publicly distributing an application, code snippet, etc, that has your username and token in it, encoded or not, WILL result in your token being blocked from the API. Each user should apply for their own token. If you wish to acquire a token for your development, you may do so by requesting a token through our automated system on this website.
5
+
6
+ OpenAPI spec version: v2.0
7
+
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 3.0.52
10
+ =end
11
+
12
+ require 'date'
13
+
14
+ module FtcEventsClient
15
+ class AdvancementSourceModel
16
+ # The event code of the event this team advanced from. Null if unknown.
17
+ attr_accessor :advanced_from
18
+
19
+ # The region code of the region this team advanced from. Null if target event is a region-level event.
20
+ attr_accessor :advanced_from_region
21
+
22
+ # The number of teams that advanced from the source event.
23
+ attr_accessor :slots
24
+
25
+ # The ordered list of advancement criteria and teams that met them. Null if the event is unpublished.
26
+ attr_accessor :advancement
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'advanced_from' => :'advancedFrom',
32
+ :'advanced_from_region' => :'advancedFromRegion',
33
+ :'slots' => :'slots',
34
+ :'advancement' => :'advancement'
35
+ }
36
+ end
37
+
38
+ # Attribute type mapping.
39
+ def self.openapi_types
40
+ {
41
+ :'advanced_from' => :'Object',
42
+ :'advanced_from_region' => :'Object',
43
+ :'slots' => :'Object',
44
+ :'advancement' => :'Object'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ :'advanced_from',
52
+ :'advanced_from_region',
53
+ :'advancement'
54
+ ])
55
+ end
56
+
57
+ # Initializes the object
58
+ # @param [Hash] attributes Model attributes in the form of hash
59
+ def initialize(attributes = {})
60
+ if (!attributes.is_a?(Hash))
61
+ fail ArgumentError, "The input argument (attributes) must be a hash in `FtcEventsClient::AdvancementSourceModel` initialize method"
62
+ end
63
+
64
+ # check to see if the attribute exists and convert string to symbol for hash key
65
+ attributes = attributes.each_with_object({}) { |(k, v), h|
66
+ if (!self.class.attribute_map.key?(k.to_sym))
67
+ fail ArgumentError, "`#{k}` is not a valid attribute in `FtcEventsClient::AdvancementSourceModel`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
68
+ end
69
+ h[k.to_sym] = v
70
+ }
71
+
72
+ if attributes.key?(:'advanced_from')
73
+ self.advanced_from = attributes[:'advanced_from']
74
+ end
75
+
76
+ if attributes.key?(:'advanced_from_region')
77
+ self.advanced_from_region = attributes[:'advanced_from_region']
78
+ end
79
+
80
+ if attributes.key?(:'slots')
81
+ self.slots = attributes[:'slots']
82
+ end
83
+
84
+ if attributes.key?(:'advancement')
85
+ if (value = attributes[:'advancement']).is_a?(Array)
86
+ self.advancement = value
87
+ end
88
+ end
89
+ end
90
+
91
+ # Show invalid properties with the reasons. Usually used together with valid?
92
+ # @return Array for valid properties with the reasons
93
+ def list_invalid_properties
94
+ invalid_properties = Array.new
95
+ invalid_properties
96
+ end
97
+
98
+ # Check to see if the all the properties in the model are valid
99
+ # @return true if the model is valid
100
+ def valid?
101
+ true
102
+ end
103
+
104
+ # Checks equality by comparing each attribute.
105
+ # @param [Object] Object to be compared
106
+ def ==(o)
107
+ return true if self.equal?(o)
108
+ self.class == o.class &&
109
+ advanced_from == o.advanced_from &&
110
+ advanced_from_region == o.advanced_from_region &&
111
+ slots == o.slots &&
112
+ advancement == o.advancement
113
+ end
114
+
115
+ # @see the `==` method
116
+ # @param [Object] Object to be compared
117
+ def eql?(o)
118
+ self == o
119
+ end
120
+
121
+ # Calculates hash code according to all attributes.
122
+ # @return [Integer] Hash code
123
+ def hash
124
+ [advanced_from, advanced_from_region, slots, advancement].hash
125
+ end
126
+
127
+ # Builds the object from hash
128
+ # @param [Hash] attributes Model attributes in the form of hash
129
+ # @return [Object] Returns the model itself
130
+ def self.build_from_hash(attributes)
131
+ new.build_from_hash(attributes)
132
+ end
133
+
134
+ # Builds the object from hash
135
+ # @param [Hash] attributes Model attributes in the form of hash
136
+ # @return [Object] Returns the model itself
137
+ def build_from_hash(attributes)
138
+ return nil unless attributes.is_a?(Hash)
139
+ self.class.openapi_types.each_pair do |key, type|
140
+ if type =~ /\AArray<(.*)>/i
141
+ # check to ensure the input is an array given that the attribute
142
+ # is documented as an array but the input is not
143
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
144
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
145
+ end
146
+ elsif !attributes[self.class.attribute_map[key]].nil?
147
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
148
+ elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
149
+ self.send("#{key}=", nil)
150
+ end
151
+ end
152
+
153
+ self
154
+ end
155
+
156
+ # Deserializes the data based on type
157
+ # @param string type Data type
158
+ # @param string value Value to be deserialized
159
+ # @return [Object] Deserialized data
160
+ def _deserialize(type, value)
161
+ case type.to_sym
162
+ when :DateTime
163
+ DateTime.parse(value)
164
+ when :Date
165
+ Date.parse(value)
166
+ when :String
167
+ value.to_s
168
+ when :Integer
169
+ value.to_i
170
+ when :Float
171
+ value.to_f
172
+ when :Boolean
173
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
174
+ true
175
+ else
176
+ false
177
+ end
178
+ when :Object
179
+ # generic object (usually a Hash), return directly
180
+ value
181
+ when /\AArray<(?<inner_type>.+)>\z/
182
+ inner_type = Regexp.last_match[:inner_type]
183
+ value.map { |v| _deserialize(inner_type, v) }
184
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
185
+ k_type = Regexp.last_match[:k_type]
186
+ v_type = Regexp.last_match[:v_type]
187
+ {}.tap do |hash|
188
+ value.each do |k, v|
189
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
190
+ end
191
+ end
192
+ else # model
193
+ FtcEventsClient.const_get(type).build_from_hash(value)
194
+ end
195
+ end
196
+
197
+ # Returns the string representation of the object
198
+ # @return [String] String presentation of the object
199
+ def to_s
200
+ to_hash.to_s
201
+ end
202
+
203
+ # to_body is an alias to to_hash (backward compatibility)
204
+ # @return [Hash] Returns the object in the form of hash
205
+ def to_body
206
+ to_hash
207
+ end
208
+
209
+ # Returns the object in the form of hash
210
+ # @return [Hash] Returns the object in the form of hash
211
+ def to_hash
212
+ hash = {}
213
+ self.class.attribute_map.each_pair do |attr, param|
214
+ value = self.send(attr)
215
+ if value.nil?
216
+ is_nullable = self.class.openapi_nullable.include?(attr)
217
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
218
+ end
219
+
220
+ hash[param] = _to_hash(value)
221
+ end
222
+ hash
223
+ end
224
+
225
+ # Outputs non-array value in the form of hash
226
+ # For object, use to_hash. Otherwise, just return the value
227
+ # @param [Object] value Any valid value
228
+ # @return [Hash] Returns the value in the form of hash
229
+ def _to_hash(value)
230
+ if value.is_a?(Array)
231
+ value.compact.map { |v| _to_hash(v) }
232
+ elsif value.is_a?(Hash)
233
+ {}.tap do |hash|
234
+ value.each { |k, v| hash[k] = _to_hash(v) }
235
+ end
236
+ elsif value.respond_to? :to_hash
237
+ value.to_hash
238
+ else
239
+ value
240
+ end
241
+ end end
242
+ end
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v2.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.29
9
+ Swagger Codegen version: 3.0.52
10
10
  =end
11
11
 
12
12
  require 'date'
@@ -19,10 +19,16 @@ module FtcEventsClient
19
19
 
20
20
  attr_accessor :captain
21
21
 
22
+ attr_accessor :captain_display
23
+
22
24
  attr_accessor :round1
23
25
 
26
+ attr_accessor :round1_display
27
+
24
28
  attr_accessor :round2
25
29
 
30
+ attr_accessor :round2_display
31
+
26
32
  attr_accessor :round3
27
33
 
28
34
  attr_accessor :backup
@@ -35,8 +41,11 @@ module FtcEventsClient
35
41
  :'number' => :'number',
36
42
  :'name' => :'name',
37
43
  :'captain' => :'captain',
44
+ :'captain_display' => :'captainDisplay',
38
45
  :'round1' => :'round1',
46
+ :'round1_display' => :'round1Display',
39
47
  :'round2' => :'round2',
48
+ :'round2_display' => :'round2Display',
40
49
  :'round3' => :'round3',
41
50
  :'backup' => :'backup',
42
51
  :'backup_replaced' => :'backupReplaced'
@@ -49,8 +58,11 @@ module FtcEventsClient
49
58
  :'number' => :'Object',
50
59
  :'name' => :'Object',
51
60
  :'captain' => :'Object',
61
+ :'captain_display' => :'Object',
52
62
  :'round1' => :'Object',
63
+ :'round1_display' => :'Object',
53
64
  :'round2' => :'Object',
65
+ :'round2_display' => :'Object',
54
66
  :'round3' => :'Object',
55
67
  :'backup' => :'Object',
56
68
  :'backup_replaced' => :'Object'
@@ -62,8 +74,11 @@ module FtcEventsClient
62
74
  Set.new([
63
75
  :'name',
64
76
  :'captain',
77
+ :'captain_display',
65
78
  :'round1',
79
+ :'round1_display',
66
80
  :'round2',
81
+ :'round2_display',
67
82
  :'round3',
68
83
  :'backup',
69
84
  :'backup_replaced'
@@ -97,14 +112,26 @@ module FtcEventsClient
97
112
  self.captain = attributes[:'captain']
98
113
  end
99
114
 
115
+ if attributes.key?(:'captain_display')
116
+ self.captain_display = attributes[:'captain_display']
117
+ end
118
+
100
119
  if attributes.key?(:'round1')
101
120
  self.round1 = attributes[:'round1']
102
121
  end
103
122
 
123
+ if attributes.key?(:'round1_display')
124
+ self.round1_display = attributes[:'round1_display']
125
+ end
126
+
104
127
  if attributes.key?(:'round2')
105
128
  self.round2 = attributes[:'round2']
106
129
  end
107
130
 
131
+ if attributes.key?(:'round2_display')
132
+ self.round2_display = attributes[:'round2_display']
133
+ end
134
+
108
135
  if attributes.key?(:'round3')
109
136
  self.round3 = attributes[:'round3']
110
137
  end
@@ -139,8 +166,11 @@ module FtcEventsClient
139
166
  number == o.number &&
140
167
  name == o.name &&
141
168
  captain == o.captain &&
169
+ captain_display == o.captain_display &&
142
170
  round1 == o.round1 &&
171
+ round1_display == o.round1_display &&
143
172
  round2 == o.round2 &&
173
+ round2_display == o.round2_display &&
144
174
  round3 == o.round3 &&
145
175
  backup == o.backup &&
146
176
  backup_replaced == o.backup_replaced
@@ -155,7 +185,7 @@ module FtcEventsClient
155
185
  # Calculates hash code according to all attributes.
156
186
  # @return [Integer] Hash code
157
187
  def hash
158
- [number, name, captain, round1, round2, round3, backup, backup_replaced].hash
188
+ [number, name, captain, captain_display, round1, round1_display, round2, round2_display, round3, backup, backup_replaced].hash
159
189
  end
160
190
 
161
191
  # Builds the object from hash
@@ -6,7 +6,7 @@
6
6
  OpenAPI spec version: v2.0
7
7
 
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
- Swagger Codegen version: 3.0.29
9
+ Swagger Codegen version: 3.0.52
10
10
  =end
11
11
 
12
12
  require 'date'