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,418 @@
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 Geometry
16
+ attr_accessor :factory
17
+
18
+ attr_accessor :user_data
19
+
20
+ attr_accessor :srid
21
+
22
+ attr_accessor :geometry_type
23
+
24
+ attr_accessor :ogc_geometry_type
25
+
26
+ attr_accessor :precision_model
27
+
28
+ attr_accessor :coordinate
29
+
30
+ attr_accessor :coordinates
31
+
32
+ attr_accessor :num_points
33
+
34
+ attr_accessor :num_geometries
35
+
36
+ attr_accessor :is_simple
37
+
38
+ attr_accessor :is_valid
39
+
40
+ attr_accessor :is_empty
41
+
42
+ attr_accessor :area
43
+
44
+ attr_accessor :length
45
+
46
+ attr_accessor :centroid
47
+
48
+ attr_accessor :interior_point
49
+
50
+ attr_accessor :point_on_surface
51
+
52
+ attr_accessor :dimension
53
+
54
+ attr_accessor :boundary
55
+
56
+ attr_accessor :boundary_dimension
57
+
58
+ attr_accessor :envelope
59
+
60
+ attr_accessor :envelope_internal
61
+
62
+ attr_accessor :is_rectangle
63
+
64
+ # Attribute mapping from ruby-style variable name to JSON key.
65
+ def self.attribute_map
66
+ {
67
+ :'factory' => :'factory',
68
+ :'user_data' => :'userData',
69
+ :'srid' => :'srid',
70
+ :'geometry_type' => :'geometryType',
71
+ :'ogc_geometry_type' => :'ogcGeometryType',
72
+ :'precision_model' => :'precisionModel',
73
+ :'coordinate' => :'coordinate',
74
+ :'coordinates' => :'coordinates',
75
+ :'num_points' => :'numPoints',
76
+ :'num_geometries' => :'numGeometries',
77
+ :'is_simple' => :'isSimple',
78
+ :'is_valid' => :'isValid',
79
+ :'is_empty' => :'isEmpty',
80
+ :'area' => :'area',
81
+ :'length' => :'length',
82
+ :'centroid' => :'centroid',
83
+ :'interior_point' => :'interiorPoint',
84
+ :'point_on_surface' => :'pointOnSurface',
85
+ :'dimension' => :'dimension',
86
+ :'boundary' => :'boundary',
87
+ :'boundary_dimension' => :'boundaryDimension',
88
+ :'envelope' => :'envelope',
89
+ :'envelope_internal' => :'envelopeInternal',
90
+ :'is_rectangle' => :'isRectangle'
91
+ }
92
+ end
93
+
94
+ # Attribute type mapping.
95
+ def self.openapi_types
96
+ {
97
+ :'factory' => :'Object',
98
+ :'user_data' => :'Object',
99
+ :'srid' => :'Object',
100
+ :'geometry_type' => :'Object',
101
+ :'ogc_geometry_type' => :'Object',
102
+ :'precision_model' => :'Object',
103
+ :'coordinate' => :'Object',
104
+ :'coordinates' => :'Object',
105
+ :'num_points' => :'Object',
106
+ :'num_geometries' => :'Object',
107
+ :'is_simple' => :'Object',
108
+ :'is_valid' => :'Object',
109
+ :'is_empty' => :'Object',
110
+ :'area' => :'Object',
111
+ :'length' => :'Object',
112
+ :'centroid' => :'Object',
113
+ :'interior_point' => :'Object',
114
+ :'point_on_surface' => :'Object',
115
+ :'dimension' => :'Object',
116
+ :'boundary' => :'Object',
117
+ :'boundary_dimension' => :'Object',
118
+ :'envelope' => :'Object',
119
+ :'envelope_internal' => :'Object',
120
+ :'is_rectangle' => :'Object'
121
+ }
122
+ end
123
+
124
+ # List of attributes with nullable: true
125
+ def self.openapi_nullable
126
+ Set.new([
127
+ :'user_data',
128
+ :'geometry_type',
129
+ :'coordinates',
130
+ ])
131
+ end
132
+
133
+ # Initializes the object
134
+ # @param [Hash] attributes Model attributes in the form of hash
135
+ def initialize(attributes = {})
136
+ if (!attributes.is_a?(Hash))
137
+ fail ArgumentError, "The input argument (attributes) must be a hash in `FtcEventsClient::Geometry` initialize method"
138
+ end
139
+
140
+ # check to see if the attribute exists and convert string to symbol for hash key
141
+ attributes = attributes.each_with_object({}) { |(k, v), h|
142
+ if (!self.class.attribute_map.key?(k.to_sym))
143
+ fail ArgumentError, "`#{k}` is not a valid attribute in `FtcEventsClient::Geometry`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
144
+ end
145
+ h[k.to_sym] = v
146
+ }
147
+
148
+ if attributes.key?(:'factory')
149
+ self.factory = attributes[:'factory']
150
+ end
151
+
152
+ if attributes.key?(:'user_data')
153
+ self.user_data = attributes[:'user_data']
154
+ end
155
+
156
+ if attributes.key?(:'srid')
157
+ self.srid = attributes[:'srid']
158
+ end
159
+
160
+ if attributes.key?(:'geometry_type')
161
+ self.geometry_type = attributes[:'geometry_type']
162
+ end
163
+
164
+ if attributes.key?(:'ogc_geometry_type')
165
+ self.ogc_geometry_type = attributes[:'ogc_geometry_type']
166
+ end
167
+
168
+ if attributes.key?(:'precision_model')
169
+ self.precision_model = attributes[:'precision_model']
170
+ end
171
+
172
+ if attributes.key?(:'coordinate')
173
+ self.coordinate = attributes[:'coordinate']
174
+ end
175
+
176
+ if attributes.key?(:'coordinates')
177
+ if (value = attributes[:'coordinates']).is_a?(Array)
178
+ self.coordinates = value
179
+ end
180
+ end
181
+
182
+ if attributes.key?(:'num_points')
183
+ self.num_points = attributes[:'num_points']
184
+ end
185
+
186
+ if attributes.key?(:'num_geometries')
187
+ self.num_geometries = attributes[:'num_geometries']
188
+ end
189
+
190
+ if attributes.key?(:'is_simple')
191
+ self.is_simple = attributes[:'is_simple']
192
+ end
193
+
194
+ if attributes.key?(:'is_valid')
195
+ self.is_valid = attributes[:'is_valid']
196
+ end
197
+
198
+ if attributes.key?(:'is_empty')
199
+ self.is_empty = attributes[:'is_empty']
200
+ end
201
+
202
+ if attributes.key?(:'area')
203
+ self.area = attributes[:'area']
204
+ end
205
+
206
+ if attributes.key?(:'length')
207
+ self.length = attributes[:'length']
208
+ end
209
+
210
+ if attributes.key?(:'centroid')
211
+ self.centroid = attributes[:'centroid']
212
+ end
213
+
214
+ if attributes.key?(:'interior_point')
215
+ self.interior_point = attributes[:'interior_point']
216
+ end
217
+
218
+ if attributes.key?(:'point_on_surface')
219
+ self.point_on_surface = attributes[:'point_on_surface']
220
+ end
221
+
222
+ if attributes.key?(:'dimension')
223
+ self.dimension = attributes[:'dimension']
224
+ end
225
+
226
+ if attributes.key?(:'boundary')
227
+ self.boundary = attributes[:'boundary']
228
+ end
229
+
230
+ if attributes.key?(:'boundary_dimension')
231
+ self.boundary_dimension = attributes[:'boundary_dimension']
232
+ end
233
+
234
+ if attributes.key?(:'envelope')
235
+ self.envelope = attributes[:'envelope']
236
+ end
237
+
238
+ if attributes.key?(:'envelope_internal')
239
+ self.envelope_internal = attributes[:'envelope_internal']
240
+ end
241
+
242
+ if attributes.key?(:'is_rectangle')
243
+ self.is_rectangle = attributes[:'is_rectangle']
244
+ end
245
+ end
246
+
247
+ # Show invalid properties with the reasons. Usually used together with valid?
248
+ # @return Array for valid properties with the reasons
249
+ def list_invalid_properties
250
+ invalid_properties = Array.new
251
+ invalid_properties
252
+ end
253
+
254
+ # Check to see if the all the properties in the model are valid
255
+ # @return true if the model is valid
256
+ def valid?
257
+ true
258
+ end
259
+
260
+ # Checks equality by comparing each attribute.
261
+ # @param [Object] Object to be compared
262
+ def ==(o)
263
+ return true if self.equal?(o)
264
+ self.class == o.class &&
265
+ factory == o.factory &&
266
+ user_data == o.user_data &&
267
+ srid == o.srid &&
268
+ geometry_type == o.geometry_type &&
269
+ ogc_geometry_type == o.ogc_geometry_type &&
270
+ precision_model == o.precision_model &&
271
+ coordinate == o.coordinate &&
272
+ coordinates == o.coordinates &&
273
+ num_points == o.num_points &&
274
+ num_geometries == o.num_geometries &&
275
+ is_simple == o.is_simple &&
276
+ is_valid == o.is_valid &&
277
+ is_empty == o.is_empty &&
278
+ area == o.area &&
279
+ length == o.length &&
280
+ centroid == o.centroid &&
281
+ interior_point == o.interior_point &&
282
+ point_on_surface == o.point_on_surface &&
283
+ dimension == o.dimension &&
284
+ boundary == o.boundary &&
285
+ boundary_dimension == o.boundary_dimension &&
286
+ envelope == o.envelope &&
287
+ envelope_internal == o.envelope_internal &&
288
+ is_rectangle == o.is_rectangle
289
+ end
290
+
291
+ # @see the `==` method
292
+ # @param [Object] Object to be compared
293
+ def eql?(o)
294
+ self == o
295
+ end
296
+
297
+ # Calculates hash code according to all attributes.
298
+ # @return [Integer] Hash code
299
+ def hash
300
+ [factory, user_data, srid, geometry_type, ogc_geometry_type, precision_model, coordinate, coordinates, num_points, num_geometries, is_simple, is_valid, is_empty, area, length, centroid, interior_point, point_on_surface, dimension, boundary, boundary_dimension, envelope, envelope_internal, is_rectangle].hash
301
+ end
302
+
303
+ # Builds the object from hash
304
+ # @param [Hash] attributes Model attributes in the form of hash
305
+ # @return [Object] Returns the model itself
306
+ def self.build_from_hash(attributes)
307
+ new.build_from_hash(attributes)
308
+ end
309
+
310
+ # Builds the object from hash
311
+ # @param [Hash] attributes Model attributes in the form of hash
312
+ # @return [Object] Returns the model itself
313
+ def build_from_hash(attributes)
314
+ return nil unless attributes.is_a?(Hash)
315
+ self.class.openapi_types.each_pair do |key, type|
316
+ if type =~ /\AArray<(.*)>/i
317
+ # check to ensure the input is an array given that the attribute
318
+ # is documented as an array but the input is not
319
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
320
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
321
+ end
322
+ elsif !attributes[self.class.attribute_map[key]].nil?
323
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
324
+ elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
325
+ self.send("#{key}=", nil)
326
+ end
327
+ end
328
+
329
+ self
330
+ end
331
+
332
+ # Deserializes the data based on type
333
+ # @param string type Data type
334
+ # @param string value Value to be deserialized
335
+ # @return [Object] Deserialized data
336
+ def _deserialize(type, value)
337
+ case type.to_sym
338
+ when :DateTime
339
+ DateTime.parse(value)
340
+ when :Date
341
+ Date.parse(value)
342
+ when :String
343
+ value.to_s
344
+ when :Integer
345
+ value.to_i
346
+ when :Float
347
+ value.to_f
348
+ when :Boolean
349
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
350
+ true
351
+ else
352
+ false
353
+ end
354
+ when :Object
355
+ # generic object (usually a Hash), return directly
356
+ value
357
+ when /\AArray<(?<inner_type>.+)>\z/
358
+ inner_type = Regexp.last_match[:inner_type]
359
+ value.map { |v| _deserialize(inner_type, v) }
360
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
361
+ k_type = Regexp.last_match[:k_type]
362
+ v_type = Regexp.last_match[:v_type]
363
+ {}.tap do |hash|
364
+ value.each do |k, v|
365
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
366
+ end
367
+ end
368
+ else # model
369
+ FtcEventsClient.const_get(type).build_from_hash(value)
370
+ end
371
+ end
372
+
373
+ # Returns the string representation of the object
374
+ # @return [String] String presentation of the object
375
+ def to_s
376
+ to_hash.to_s
377
+ end
378
+
379
+ # to_body is an alias to to_hash (backward compatibility)
380
+ # @return [Hash] Returns the object in the form of hash
381
+ def to_body
382
+ to_hash
383
+ end
384
+
385
+ # Returns the object in the form of hash
386
+ # @return [Hash] Returns the object in the form of hash
387
+ def to_hash
388
+ hash = {}
389
+ self.class.attribute_map.each_pair do |attr, param|
390
+ value = self.send(attr)
391
+ if value.nil?
392
+ is_nullable = self.class.openapi_nullable.include?(attr)
393
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
394
+ end
395
+
396
+ hash[param] = _to_hash(value)
397
+ end
398
+ hash
399
+ end
400
+
401
+ # Outputs non-array value in the form of hash
402
+ # For object, use to_hash. Otherwise, just return the value
403
+ # @param [Object] value Any valid value
404
+ # @return [Hash] Returns the value in the form of hash
405
+ def _to_hash(value)
406
+ if value.is_a?(Array)
407
+ value.compact.map { |v| _to_hash(v) }
408
+ elsif value.is_a?(Hash)
409
+ {}.tap do |hash|
410
+ value.each { |k, v| hash[k] = _to_hash(v) }
411
+ end
412
+ elsif value.respond_to? :to_hash
413
+ value.to_hash
414
+ else
415
+ value
416
+ end
417
+ end end
418
+ end
@@ -0,0 +1,233 @@
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 GeometryFactory
16
+ attr_accessor :precision_model
17
+
18
+ attr_accessor :coordinate_sequence_factory
19
+
20
+ attr_accessor :srid
21
+
22
+ attr_accessor :geometry_services
23
+
24
+ # Attribute mapping from ruby-style variable name to JSON key.
25
+ def self.attribute_map
26
+ {
27
+ :'precision_model' => :'precisionModel',
28
+ :'coordinate_sequence_factory' => :'coordinateSequenceFactory',
29
+ :'srid' => :'srid',
30
+ :'geometry_services' => :'geometryServices'
31
+ }
32
+ end
33
+
34
+ # Attribute type mapping.
35
+ def self.openapi_types
36
+ {
37
+ :'precision_model' => :'Object',
38
+ :'coordinate_sequence_factory' => :'Object',
39
+ :'srid' => :'Object',
40
+ :'geometry_services' => :'Object'
41
+ }
42
+ end
43
+
44
+ # List of attributes with nullable: true
45
+ def self.openapi_nullable
46
+ Set.new([
47
+ ])
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ if (!attributes.is_a?(Hash))
54
+ fail ArgumentError, "The input argument (attributes) must be a hash in `FtcEventsClient::GeometryFactory` initialize method"
55
+ end
56
+
57
+ # check to see if the attribute exists and convert string to symbol for hash key
58
+ attributes = attributes.each_with_object({}) { |(k, v), h|
59
+ if (!self.class.attribute_map.key?(k.to_sym))
60
+ fail ArgumentError, "`#{k}` is not a valid attribute in `FtcEventsClient::GeometryFactory`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
61
+ end
62
+ h[k.to_sym] = v
63
+ }
64
+
65
+ if attributes.key?(:'precision_model')
66
+ self.precision_model = attributes[:'precision_model']
67
+ end
68
+
69
+ if attributes.key?(:'coordinate_sequence_factory')
70
+ self.coordinate_sequence_factory = attributes[:'coordinate_sequence_factory']
71
+ end
72
+
73
+ if attributes.key?(:'srid')
74
+ self.srid = attributes[:'srid']
75
+ end
76
+
77
+ if attributes.key?(:'geometry_services')
78
+ self.geometry_services = attributes[:'geometry_services']
79
+ end
80
+ end
81
+
82
+ # Show invalid properties with the reasons. Usually used together with valid?
83
+ # @return Array for valid properties with the reasons
84
+ def list_invalid_properties
85
+ invalid_properties = Array.new
86
+ invalid_properties
87
+ end
88
+
89
+ # Check to see if the all the properties in the model are valid
90
+ # @return true if the model is valid
91
+ def valid?
92
+ true
93
+ end
94
+
95
+ # Checks equality by comparing each attribute.
96
+ # @param [Object] Object to be compared
97
+ def ==(o)
98
+ return true if self.equal?(o)
99
+ self.class == o.class &&
100
+ precision_model == o.precision_model &&
101
+ coordinate_sequence_factory == o.coordinate_sequence_factory &&
102
+ srid == o.srid &&
103
+ geometry_services == o.geometry_services
104
+ end
105
+
106
+ # @see the `==` method
107
+ # @param [Object] Object to be compared
108
+ def eql?(o)
109
+ self == o
110
+ end
111
+
112
+ # Calculates hash code according to all attributes.
113
+ # @return [Integer] Hash code
114
+ def hash
115
+ [precision_model, coordinate_sequence_factory, srid, geometry_services].hash
116
+ end
117
+
118
+ # Builds the object from hash
119
+ # @param [Hash] attributes Model attributes in the form of hash
120
+ # @return [Object] Returns the model itself
121
+ def self.build_from_hash(attributes)
122
+ new.build_from_hash(attributes)
123
+ end
124
+
125
+ # Builds the object from hash
126
+ # @param [Hash] attributes Model attributes in the form of hash
127
+ # @return [Object] Returns the model itself
128
+ def build_from_hash(attributes)
129
+ return nil unless attributes.is_a?(Hash)
130
+ self.class.openapi_types.each_pair do |key, type|
131
+ if type =~ /\AArray<(.*)>/i
132
+ # check to ensure the input is an array given that the attribute
133
+ # is documented as an array but the input is not
134
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
135
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
136
+ end
137
+ elsif !attributes[self.class.attribute_map[key]].nil?
138
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
139
+ elsif attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
140
+ self.send("#{key}=", nil)
141
+ end
142
+ end
143
+
144
+ self
145
+ end
146
+
147
+ # Deserializes the data based on type
148
+ # @param string type Data type
149
+ # @param string value Value to be deserialized
150
+ # @return [Object] Deserialized data
151
+ def _deserialize(type, value)
152
+ case type.to_sym
153
+ when :DateTime
154
+ DateTime.parse(value)
155
+ when :Date
156
+ Date.parse(value)
157
+ when :String
158
+ value.to_s
159
+ when :Integer
160
+ value.to_i
161
+ when :Float
162
+ value.to_f
163
+ when :Boolean
164
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
165
+ true
166
+ else
167
+ false
168
+ end
169
+ when :Object
170
+ # generic object (usually a Hash), return directly
171
+ value
172
+ when /\AArray<(?<inner_type>.+)>\z/
173
+ inner_type = Regexp.last_match[:inner_type]
174
+ value.map { |v| _deserialize(inner_type, v) }
175
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
176
+ k_type = Regexp.last_match[:k_type]
177
+ v_type = Regexp.last_match[:v_type]
178
+ {}.tap do |hash|
179
+ value.each do |k, v|
180
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
181
+ end
182
+ end
183
+ else # model
184
+ FtcEventsClient.const_get(type).build_from_hash(value)
185
+ end
186
+ end
187
+
188
+ # Returns the string representation of the object
189
+ # @return [String] String presentation of the object
190
+ def to_s
191
+ to_hash.to_s
192
+ end
193
+
194
+ # to_body is an alias to to_hash (backward compatibility)
195
+ # @return [Hash] Returns the object in the form of hash
196
+ def to_body
197
+ to_hash
198
+ end
199
+
200
+ # Returns the object in the form of hash
201
+ # @return [Hash] Returns the object in the form of hash
202
+ def to_hash
203
+ hash = {}
204
+ self.class.attribute_map.each_pair do |attr, param|
205
+ value = self.send(attr)
206
+ if value.nil?
207
+ is_nullable = self.class.openapi_nullable.include?(attr)
208
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
209
+ end
210
+
211
+ hash[param] = _to_hash(value)
212
+ end
213
+ hash
214
+ end
215
+
216
+ # Outputs non-array value in the form of hash
217
+ # For object, use to_hash. Otherwise, just return the value
218
+ # @param [Object] value Any valid value
219
+ # @return [Hash] Returns the value in the form of hash
220
+ def _to_hash(value)
221
+ if value.is_a?(Array)
222
+ value.compact.map { |v| _to_hash(v) }
223
+ elsif value.is_a?(Hash)
224
+ {}.tap do |hash|
225
+ value.each { |k, v| hash[k] = _to_hash(v) }
226
+ end
227
+ elsif value.respond_to? :to_hash
228
+ value.to_hash
229
+ else
230
+ value
231
+ end
232
+ end end
233
+ end