From 73b1cd195e4fcd85529657e98c4933122d26cd26 Mon Sep 17 00:00:00 2001 From: matthew Date: Sun, 22 Jan 2023 18:49:05 -0500 Subject: [PATCH 1/3] plugin and primary dependency updates; fix javadoc issues; --- pom.xml | 62 +- .../tbaapi/v3client/ApiClient.java | 14 +- .../tbaapi/v3client/api/DistrictApi.java | 200 +++-- .../tbaapi/v3client/api/EventApi.java | 701 +++++++++------ .../tbaapi/v3client/api/ListApi.java | 420 +++++---- .../tbaapi/v3client/api/MatchApi.java | 280 +++--- .../tbaapi/v3client/api/TbaApi.java | 20 +- .../tbaapi/v3client/api/TeamApi.java | 800 +++++++++++------- .../tbaapi/v3client/auth/OAuth.java | 2 +- .../tbaapi/v3client/api/EventApiTest.java | 2 +- 10 files changed, 1508 insertions(+), 993 deletions(-) diff --git a/pom.xml b/pom.xml index fc8f398..d347af2 100644 --- a/pom.xml +++ b/pom.xml @@ -36,7 +36,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.0.0-M1 + ${maven-enforcer-plugin-version} enforce-maven @@ -56,7 +56,7 @@ org.apache.maven.plugins maven-surefire-plugin - 2.12 + ${maven-surefire-plugin-version} @@ -67,10 +67,13 @@ -Xms512m -Xmx1500m methods pertest + 8 + org.apache.maven.plugins maven-dependency-plugin + ${maven-dependency-plugin-version} package @@ -88,23 +91,20 @@ org.apache.maven.plugins maven-jar-plugin - 2.2 + ${maven-jar-plugin-version} - jar test-jar - - org.codehaus.mojo build-helper-maven-plugin - 1.10 + ${build-helper-maven-plugin-version} add_sources @@ -137,7 +137,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.10.4 + ${maven-javadoc-plugin-version} attach-javadocs @@ -150,7 +150,7 @@ org.apache.maven.plugins maven-source-plugin - 2.2.1 + ${maven-source-plugin-version} attach-sources @@ -171,7 +171,7 @@ org.apache.maven.plugins maven-gpg-plugin - 1.5 + ${maven-gpg-plugin-version} sign-artifacts @@ -194,12 +194,12 @@ ${swagger-core-version} - com.squareup.okhttp + com.squareup.okhttp3 okhttp ${okhttp-version} - com.squareup.okhttp + com.squareup.okhttp3 logging-interceptor ${okhttp-version} @@ -218,6 +218,13 @@ threetenbp ${threetenbp-version} + + + com.google.code.findbugs + jsr305 + ${findbugs-version} + + junit @@ -226,17 +233,32 @@ test + - 1.7 + 11 ${java.version} ${java.version} - 1.8.0 - 1.5.15 - 2.7.5 - 2.8.1 - 1.3.5 - 1.0.0 - 4.12 UTF-8 + + + 3.3.0 + 3.0.1 + 3.2.1 + 3.4.1 + 3.1.0 + 3.0.0-M8 + 3.3.0 + 3.5.0 + + + 1.8.5 + 1.6.9 + 4.10.0 + 2.10.1 + 1.6.5 + 3.0.2 + + + 4.12 diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/ApiClient.java b/src/main/java/net/thefletcher/tbaapi/v3client/ApiClient.java index 856461c..5b3a32c 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/ApiClient.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/ApiClient.java @@ -13,11 +13,19 @@ package net.thefletcher.tbaapi.v3client; -import okhttp3.*; +import okhttp3.Call; +import okhttp3.Callback; +import okhttp3.Headers; +import okhttp3.Interceptor; +import okhttp3.MediaType; +import okhttp3.MultipartBody; +import okhttp3.OkHttpClient; +import okhttp3.Request; +import okhttp3.RequestBody; +import okhttp3.Response; import okhttp3.internal.http.HttpMethod; import okhttp3.internal.tls.OkHostnameVerifier; import okhttp3.logging.HttpLoggingInterceptor; -import okhttp3.logging.HttpLoggingInterceptor.Level; import okio.BufferedSink; import okio.Okio; import org.threeten.bp.LocalDate; @@ -408,7 +416,7 @@ public ApiClient setDebugging(boolean debugging) { if (debugging != this.debugging) { if (debugging) { loggingInterceptor = new HttpLoggingInterceptor(); - loggingInterceptor.setLevel(Level.BODY); + loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); httpClient = httpClient.newBuilder().addInterceptor(loggingInterceptor).build(); } else { httpClient.interceptors().remove(loggingInterceptor); diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/api/DistrictApi.java b/src/main/java/net/thefletcher/tbaapi/v3client/api/DistrictApi.java index 0b80e3d..473c283 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/api/DistrictApi.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/api/DistrictApi.java @@ -67,8 +67,9 @@ public void setApiClient(ApiClient apiClient) { * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details - + +
+ @@ -130,8 +131,9 @@ private okhttp3.Call getDistrictEventsValidateBeforeCall(String districtKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -150,8 +152,9 @@ public List getDistrictEvents(String districtKey, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -172,8 +175,9 @@ public ApiResponse> getDistrictEventsWithHttpInfo(String districtKey * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -194,8 +198,9 @@ public okhttp3.Call getDistrictEventsAsync(String districtKey, String ifModified * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -257,8 +262,9 @@ private okhttp3.Call getDistrictEventsKeysValidateBeforeCall(String districtKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -277,8 +283,9 @@ public List getDistrictEventsKeys(String districtKey, String ifModifiedS * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -299,8 +306,9 @@ public ApiResponse> getDistrictEventsKeysWithHttpInfo(String distri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -321,8 +329,9 @@ public okhttp3.Call getDistrictEventsKeysAsync(String districtKey, String ifModi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -384,8 +393,9 @@ private okhttp3.Call getDistrictEventsSimpleValidateBeforeCall(String districtKe * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -404,8 +414,9 @@ public List getDistrictEventsSimple(String districtKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -426,8 +437,9 @@ public ApiResponse> getDistrictEventsSimpleWithHttpInfo(String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -448,8 +460,9 @@ public okhttp3.Call getDistrictEventsSimpleAsync(String districtKey, String ifMo * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -511,8 +524,9 @@ private okhttp3.Call getDistrictRankingsValidateBeforeCall(String districtKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<DistrictRanking> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -531,8 +545,9 @@ public List getDistrictRankings(String districtKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<DistrictRanking>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -553,8 +568,9 @@ public ApiResponse> getDistrictRankingsWithHttpInfo(String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -575,8 +591,9 @@ public okhttp3.Call getDistrictRankingsAsync(String districtKey, String ifModifi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -638,8 +655,9 @@ private okhttp3.Call getDistrictTeamsValidateBeforeCall(String districtKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -658,8 +676,9 @@ public List getDistrictTeams(String districtKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -680,8 +699,9 @@ public ApiResponse> getDistrictTeamsWithHttpInfo(String districtKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -702,8 +722,9 @@ public okhttp3.Call getDistrictTeamsAsync(String districtKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -765,8 +786,9 @@ private okhttp3.Call getDistrictTeamsKeysValidateBeforeCall(String districtKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -785,8 +807,9 @@ public List getDistrictTeamsKeys(String districtKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -807,8 +830,9 @@ public ApiResponse> getDistrictTeamsKeysWithHttpInfo(String distric * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -829,8 +853,9 @@ public okhttp3.Call getDistrictTeamsKeysAsync(String districtKey, String ifModif * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -892,8 +917,9 @@ private okhttp3.Call getDistrictTeamsSimpleValidateBeforeCall(String districtKey * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -912,8 +938,9 @@ public List getDistrictTeamsSimple(String districtKey, String ifModi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -934,8 +961,9 @@ public ApiResponse> getDistrictTeamsSimpleWithHttpInfo(String d * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -956,8 +984,9 @@ public okhttp3.Call getDistrictTeamsSimpleAsync(String districtKey, String ifMod * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1019,8 +1048,9 @@ private okhttp3.Call getDistrictsByYearValidateBeforeCall(Integer year, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<DistrictList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1039,8 +1069,9 @@ public List getDistrictsByYear(Integer year, String ifModifiedSinc * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<DistrictList>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1061,8 +1092,9 @@ public ApiResponse> getDistrictsByYearWithHttpInfo(Integer ye * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1083,8 +1115,9 @@ public okhttp3.Call getDistrictsByYearAsync(Integer year, String ifModifiedSince * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1146,8 +1179,9 @@ private okhttp3.Call getEventDistrictPointsValidateBeforeCall(String eventKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return EventDistrictPoints * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1166,8 +1200,9 @@ public EventDistrictPoints getEventDistrictPoints(String eventKey, String ifModi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<EventDistrictPoints> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1188,8 +1223,9 @@ public ApiResponse getEventDistrictPointsWithHttpInfo(Strin * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1210,8 +1246,9 @@ public okhttp3.Call getEventDistrictPointsAsync(String eventKey, String ifModifi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1273,8 +1310,9 @@ private okhttp3.Call getTeamDistrictsValidateBeforeCall(String teamKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<DistrictList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1293,8 +1331,9 @@ public List getTeamDistricts(String teamKey, String ifModifiedSinc * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<DistrictList>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1315,8 +1354,9 @@ public ApiResponse> getTeamDistrictsWithHttpInfo(String teamK * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/api/EventApi.java b/src/main/java/net/thefletcher/tbaapi/v3client/api/EventApi.java index 8c58f8f..30e91d9 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/api/EventApi.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/api/EventApi.java @@ -73,8 +73,9 @@ public void setApiClient(ApiClient apiClient) { * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -136,8 +137,9 @@ private okhttp3.Call getDistrictEventsValidateBeforeCall(String districtKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -156,8 +158,9 @@ public List getDistrictEvents(String districtKey, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -178,8 +181,9 @@ public ApiResponse> getDistrictEventsWithHttpInfo(String districtKey * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -200,8 +204,9 @@ public okhttp3.Call getDistrictEventsAsync(String districtKey, String ifModified * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -263,8 +268,9 @@ private okhttp3.Call getDistrictEventsKeysValidateBeforeCall(String districtKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -283,8 +289,9 @@ public List getDistrictEventsKeys(String districtKey, String ifModifiedS * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -305,8 +312,9 @@ public ApiResponse> getDistrictEventsKeysWithHttpInfo(String distri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -327,8 +335,10 @@ public okhttp3.Call getDistrictEventsKeysAsync(String districtKey, String ifModi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ + @@ -390,8 +400,9 @@ private okhttp3.Call getDistrictEventsSimpleValidateBeforeCall(String districtKe * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response DetailsResponse Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -410,8 +421,9 @@ public List getDistrictEventsSimple(String districtKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -432,8 +444,9 @@ public ApiResponse> getDistrictEventsSimpleWithHttpInfo(String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -454,8 +467,9 @@ public okhttp3.Call getDistrictEventsSimpleAsync(String districtKey, String ifMo * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -517,8 +531,9 @@ private okhttp3.Call getEventValidateBeforeCall(String eventKey, String ifModifi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Event * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -537,8 +552,9 @@ public Event getEvent(String eventKey, String ifModifiedSince) throws ApiExcepti * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -559,8 +575,9 @@ public ApiResponse getEventWithHttpInfo(String eventKey, String ifModifie * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -581,8 +598,9 @@ public okhttp3.Call getEventAsync(String eventKey, String ifModifiedSince, final * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -644,8 +662,9 @@ private okhttp3.Call getEventAlliancesValidateBeforeCall(String eventKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EliminationAlliance> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -664,8 +683,9 @@ public List getEventAlliances(String eventKey, String ifMod * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EliminationAlliance>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -686,8 +706,9 @@ public ApiResponse> getEventAlliancesWithHttpInfo(Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -708,8 +729,9 @@ public okhttp3.Call getEventAlliancesAsync(String eventKey, String ifModifiedSin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -771,8 +793,9 @@ private okhttp3.Call getEventAwardsValidateBeforeCall(String eventKey, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Award> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -791,8 +814,9 @@ public List getEventAwards(String eventKey, String ifModifiedSince) throw * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Award>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -813,8 +837,9 @@ public ApiResponse> getEventAwardsWithHttpInfo(String eventKey, Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -835,8 +860,9 @@ public okhttp3.Call getEventAwardsAsync(String eventKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -898,8 +924,9 @@ private okhttp3.Call getEventDistrictPointsValidateBeforeCall(String eventKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return EventDistrictPoints * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -918,8 +945,9 @@ public EventDistrictPoints getEventDistrictPoints(String eventKey, String ifModi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<EventDistrictPoints> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -940,8 +968,9 @@ public ApiResponse getEventDistrictPointsWithHttpInfo(Strin * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -962,8 +991,9 @@ public okhttp3.Call getEventDistrictPointsAsync(String eventKey, String ifModifi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1025,8 +1055,9 @@ private okhttp3.Call getEventInsightsValidateBeforeCall(String eventKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return EventInsights * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1045,8 +1076,9 @@ public EventInsights getEventInsights(String eventKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<EventInsights> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1067,8 +1099,9 @@ public ApiResponse getEventInsightsWithHttpInfo(String eventKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1089,8 +1122,9 @@ public okhttp3.Call getEventInsightsAsync(String eventKey, String ifModifiedSinc * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1152,8 +1186,9 @@ private okhttp3.Call getEventMatchTimeseriesValidateBeforeCall(String eventKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1172,8 +1207,9 @@ public List getEventMatchTimeseries(String eventKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1194,8 +1230,9 @@ public ApiResponse> getEventMatchTimeseriesWithHttpInfo(String even * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1216,8 +1253,9 @@ public okhttp3.Call getEventMatchTimeseriesAsync(String eventKey, String ifModif * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1279,8 +1317,9 @@ private okhttp3.Call getEventMatchesValidateBeforeCall(String eventKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1299,8 +1338,9 @@ public List getEventMatches(String eventKey, String ifModifiedSince) thro * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1321,8 +1361,9 @@ public ApiResponse> getEventMatchesWithHttpInfo(String eventKey, Str * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1343,8 +1384,9 @@ public okhttp3.Call getEventMatchesAsync(String eventKey, String ifModifiedSince * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1406,8 +1448,9 @@ private okhttp3.Call getEventMatchesKeysValidateBeforeCall(String eventKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1426,8 +1469,9 @@ public List getEventMatchesKeys(String eventKey, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1448,8 +1492,9 @@ public ApiResponse> getEventMatchesKeysWithHttpInfo(String eventKey * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1470,8 +1515,9 @@ public okhttp3.Call getEventMatchesKeysAsync(String eventKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1533,8 +1579,9 @@ private okhttp3.Call getEventMatchesSimpleValidateBeforeCall(String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<MatchSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1553,8 +1600,9 @@ public List getEventMatchesSimple(String eventKey, String ifModifie * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<MatchSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1575,8 +1623,9 @@ public ApiResponse> getEventMatchesSimpleWithHttpInfo(String e * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1597,8 +1646,9 @@ public okhttp3.Call getEventMatchesSimpleAsync(String eventKey, String ifModifie * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1660,8 +1710,9 @@ private okhttp3.Call getEventOPRsValidateBeforeCall(String eventKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return EventOPRs * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1680,8 +1731,9 @@ public EventOPRs getEventOPRs(String eventKey, String ifModifiedSince) throws Ap * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<EventOPRs> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1702,8 +1754,9 @@ public ApiResponse getEventOPRsWithHttpInfo(String eventKey, String i * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1724,8 +1777,9 @@ public okhttp3.Call getEventOPRsAsync(String eventKey, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1787,8 +1841,9 @@ private okhttp3.Call getEventPredictionsValidateBeforeCall(String eventKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Object * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1807,8 +1862,9 @@ public Object getEventPredictions(String eventKey, String ifModifiedSince) throw * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1829,8 +1885,9 @@ public ApiResponse getEventPredictionsWithHttpInfo(String eventKey, Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1851,8 +1908,9 @@ public okhttp3.Call getEventPredictionsAsync(String eventKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1914,8 +1972,9 @@ private okhttp3.Call getEventRankingsValidateBeforeCall(String eventKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return EventRanking * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1934,8 +1993,9 @@ public EventRanking getEventRankings(String eventKey, String ifModifiedSince) th * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<EventRanking> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1956,8 +2016,9 @@ public ApiResponse getEventRankingsWithHttpInfo(String eventKey, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1978,8 +2039,9 @@ public okhttp3.Call getEventRankingsAsync(String eventKey, String ifModifiedSinc * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2041,8 +2103,9 @@ private okhttp3.Call getEventSimpleValidateBeforeCall(String eventKey, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return EventSimple * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2061,8 +2124,9 @@ public EventSimple getEventSimple(String eventKey, String ifModifiedSince) throw * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2083,8 +2147,9 @@ public ApiResponse getEventSimpleWithHttpInfo(String eventKey, Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2105,8 +2170,9 @@ public okhttp3.Call getEventSimpleAsync(String eventKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2168,8 +2234,9 @@ private okhttp3.Call getEventTeamsValidateBeforeCall(String eventKey, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2188,8 +2255,9 @@ public List getEventTeams(String eventKey, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2210,8 +2278,9 @@ public ApiResponse> getEventTeamsWithHttpInfo(String eventKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2232,8 +2301,9 @@ public okhttp3.Call getEventTeamsAsync(String eventKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2295,8 +2365,9 @@ private okhttp3.Call getEventTeamsKeysValidateBeforeCall(String eventKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2315,8 +2386,9 @@ public List getEventTeamsKeys(String eventKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2337,8 +2409,9 @@ public ApiResponse> getEventTeamsKeysWithHttpInfo(String eventKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2359,8 +2432,9 @@ public okhttp3.Call getEventTeamsKeysAsync(String eventKey, String ifModifiedSin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2422,8 +2496,9 @@ private okhttp3.Call getEventTeamsSimpleValidateBeforeCall(String eventKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2442,8 +2517,9 @@ public List getEventTeamsSimple(String eventKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2464,8 +2540,9 @@ public ApiResponse> getEventTeamsSimpleWithHttpInfo(String even * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2486,8 +2563,9 @@ public okhttp3.Call getEventTeamsSimpleAsync(String eventKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2549,8 +2627,9 @@ private okhttp3.Call getEventTeamsStatusesValidateBeforeCall(String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Map<String, TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2569,8 +2648,9 @@ public Map getEventTeamsStatuses(String eventKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Map<String, TeamEventStatus>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2591,8 +2671,9 @@ public ApiResponse> getEventTeamsStatusesWithHttpIn * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2613,8 +2694,9 @@ public okhttp3.Call getEventTeamsStatusesAsync(String eventKey, String ifModifie * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2676,8 +2758,9 @@ private okhttp3.Call getEventsByYearValidateBeforeCall(Integer year, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2696,8 +2779,9 @@ public List getEventsByYear(Integer year, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2718,8 +2802,9 @@ public ApiResponse> getEventsByYearWithHttpInfo(Integer year, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2740,8 +2825,9 @@ public okhttp3.Call getEventsByYearAsync(Integer year, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2803,8 +2889,9 @@ private okhttp3.Call getEventsByYearKeysValidateBeforeCall(Integer year, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2823,8 +2910,9 @@ public List getEventsByYearKeys(Integer year, String ifModifiedSince) th * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2845,8 +2933,9 @@ public ApiResponse> getEventsByYearKeysWithHttpInfo(Integer year, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2867,8 +2956,9 @@ public okhttp3.Call getEventsByYearKeysAsync(Integer year, String ifModifiedSinc * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2930,8 +3020,9 @@ private okhttp3.Call getEventsByYearSimpleValidateBeforeCall(Integer year, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2950,8 +3041,9 @@ public List getEventsByYearSimple(Integer year, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2972,8 +3064,9 @@ public ApiResponse> getEventsByYearSimpleWithHttpInfo(Integer * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2995,8 +3088,9 @@ public okhttp3.Call getEventsByYearSimpleAsync(Integer year, String ifModifiedSi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3065,8 +3159,9 @@ private okhttp3.Call getTeamEventAwardsValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Award> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3086,8 +3181,9 @@ public List getTeamEventAwards(String teamKey, String eventKey, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Award>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3109,8 +3205,9 @@ public ApiResponse> getTeamEventAwardsWithHttpInfo(String teamKey, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3132,8 +3229,9 @@ public okhttp3.Call getTeamEventAwardsAsync(String teamKey, String eventKey, Str * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3202,8 +3300,9 @@ private okhttp3.Call getTeamEventMatchesValidateBeforeCall(String teamKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3223,8 +3322,9 @@ public List getTeamEventMatches(String teamKey, String eventKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3246,8 +3346,9 @@ public ApiResponse> getTeamEventMatchesWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3269,8 +3370,9 @@ public okhttp3.Call getTeamEventMatchesAsync(String teamKey, String eventKey, St * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3339,8 +3441,9 @@ private okhttp3.Call getTeamEventMatchesKeysValidateBeforeCall(String teamKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3360,8 +3463,9 @@ public List getTeamEventMatchesKeys(String teamKey, String eventKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3383,8 +3487,9 @@ public ApiResponse> getTeamEventMatchesKeysWithHttpInfo(String team * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3406,8 +3511,9 @@ public okhttp3.Call getTeamEventMatchesKeysAsync(String teamKey, String eventKey * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3476,8 +3582,9 @@ private okhttp3.Call getTeamEventMatchesSimpleValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3497,8 +3604,9 @@ public List getTeamEventMatchesSimple(String teamKey, String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3520,8 +3628,9 @@ public ApiResponse> getTeamEventMatchesSimpleWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3543,8 +3652,9 @@ public okhttp3.Call getTeamEventMatchesSimpleAsync(String teamKey, String eventK * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3613,8 +3723,9 @@ private okhttp3.Call getTeamEventStatusValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return TeamEventStatus * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3634,8 +3745,9 @@ public TeamEventStatus getTeamEventStatus(String teamKey, String eventKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3657,8 +3769,9 @@ public ApiResponse getTeamEventStatusWithHttpInfo(String teamKe * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3679,8 +3792,9 @@ public okhttp3.Call getTeamEventStatusAsync(String teamKey, String eventKey, Str * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3742,8 +3856,9 @@ private okhttp3.Call getTeamEventsValidateBeforeCall(String teamKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3762,8 +3877,9 @@ public List getTeamEvents(String teamKey, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3784,8 +3900,9 @@ public ApiResponse> getTeamEventsWithHttpInfo(String teamKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3807,8 +3924,9 @@ public okhttp3.Call getTeamEventsAsync(String teamKey, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3877,8 +3995,9 @@ private okhttp3.Call getTeamEventsByYearValidateBeforeCall(String teamKey, Integ * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3898,8 +4017,9 @@ public List getTeamEventsByYear(String teamKey, Integer year, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3921,8 +4041,9 @@ public ApiResponse> getTeamEventsByYearWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3944,8 +4065,9 @@ public okhttp3.Call getTeamEventsByYearAsync(String teamKey, Integer year, Strin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4014,8 +4136,9 @@ private okhttp3.Call getTeamEventsByYearKeysValidateBeforeCall(String teamKey, I * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4035,8 +4158,9 @@ public List getTeamEventsByYearKeys(String teamKey, Integer year, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4058,8 +4182,9 @@ public ApiResponse> getTeamEventsByYearKeysWithHttpInfo(String team * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4081,8 +4206,9 @@ public okhttp3.Call getTeamEventsByYearKeysAsync(String teamKey, Integer year, S * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4151,8 +4277,9 @@ private okhttp3.Call getTeamEventsByYearSimpleValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4172,8 +4299,9 @@ public List getTeamEventsByYearSimple(String teamKey, Integer year, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4195,8 +4323,9 @@ public ApiResponse> getTeamEventsByYearSimpleWithHttpInfo(Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4217,8 +4346,9 @@ public okhttp3.Call getTeamEventsByYearSimpleAsync(String teamKey, Integer year, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4280,8 +4410,9 @@ private okhttp3.Call getTeamEventsKeysValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4300,8 +4431,9 @@ public List getTeamEventsKeys(String teamKey, String ifModifiedSince) th * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4322,8 +4454,9 @@ public ApiResponse> getTeamEventsKeysWithHttpInfo(String teamKey, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4344,8 +4477,9 @@ public okhttp3.Call getTeamEventsKeysAsync(String teamKey, String ifModifiedSinc * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4407,8 +4541,9 @@ private okhttp3.Call getTeamEventsSimpleValidateBeforeCall(String teamKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4427,8 +4562,9 @@ public List getTeamEventsSimple(String teamKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4449,8 +4585,9 @@ public ApiResponse> getTeamEventsSimpleWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4472,8 +4609,9 @@ public okhttp3.Call getTeamEventsSimpleAsync(String teamKey, String ifModifiedSi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4542,8 +4680,9 @@ private okhttp3.Call getTeamEventsStatusesByYearValidateBeforeCall(String teamKe * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Map<String, TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4563,8 +4702,9 @@ public Map getTeamEventsStatusesByYear(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Map<String, TeamEventStatus>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4586,8 +4726,9 @@ public ApiResponse> getTeamEventsStatusesByYearWith * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/api/ListApi.java b/src/main/java/net/thefletcher/tbaapi/v3client/api/ListApi.java index f7cf069..974b13d 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/api/ListApi.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/api/ListApi.java @@ -66,8 +66,9 @@ public void setApiClient(ApiClient apiClient) { * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -129,8 +130,9 @@ private okhttp3.Call getDistrictEventsValidateBeforeCall(String districtKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -149,8 +151,9 @@ public List getDistrictEvents(String districtKey, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -171,8 +174,9 @@ public ApiResponse> getDistrictEventsWithHttpInfo(String districtKey * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -193,8 +197,9 @@ public okhttp3.Call getDistrictEventsAsync(String districtKey, String ifModified * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -256,8 +261,9 @@ private okhttp3.Call getDistrictEventsKeysValidateBeforeCall(String districtKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -276,8 +282,9 @@ public List getDistrictEventsKeys(String districtKey, String ifModifiedS * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -298,8 +305,9 @@ public ApiResponse> getDistrictEventsKeysWithHttpInfo(String distri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -320,8 +328,9 @@ public okhttp3.Call getDistrictEventsKeysAsync(String districtKey, String ifModi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -383,8 +392,9 @@ private okhttp3.Call getDistrictEventsSimpleValidateBeforeCall(String districtKe * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -403,8 +413,9 @@ public List getDistrictEventsSimple(String districtKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -425,8 +436,9 @@ public ApiResponse> getDistrictEventsSimpleWithHttpInfo(String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -447,8 +459,9 @@ public okhttp3.Call getDistrictEventsSimpleAsync(String districtKey, String ifMo * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -510,8 +523,9 @@ private okhttp3.Call getDistrictRankingsValidateBeforeCall(String districtKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<DistrictRanking> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -530,8 +544,9 @@ public List getDistrictRankings(String districtKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<DistrictRanking>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -552,8 +567,9 @@ public ApiResponse> getDistrictRankingsWithHttpInfo(String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -574,8 +590,9 @@ public okhttp3.Call getDistrictRankingsAsync(String districtKey, String ifModifi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -637,8 +654,9 @@ private okhttp3.Call getDistrictTeamsValidateBeforeCall(String districtKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -657,8 +675,9 @@ public List getDistrictTeams(String districtKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -679,8 +698,9 @@ public ApiResponse> getDistrictTeamsWithHttpInfo(String districtKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -701,8 +721,9 @@ public okhttp3.Call getDistrictTeamsAsync(String districtKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -764,8 +785,9 @@ private okhttp3.Call getDistrictTeamsKeysValidateBeforeCall(String districtKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -784,8 +806,9 @@ public List getDistrictTeamsKeys(String districtKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -806,8 +829,9 @@ public ApiResponse> getDistrictTeamsKeysWithHttpInfo(String distric * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -828,8 +852,9 @@ public okhttp3.Call getDistrictTeamsKeysAsync(String districtKey, String ifModif * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -891,8 +916,9 @@ private okhttp3.Call getDistrictTeamsSimpleValidateBeforeCall(String districtKey * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -911,8 +937,9 @@ public List getDistrictTeamsSimple(String districtKey, String ifModi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -933,8 +960,9 @@ public ApiResponse> getDistrictTeamsSimpleWithHttpInfo(String d * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -955,8 +983,9 @@ public okhttp3.Call getDistrictTeamsSimpleAsync(String districtKey, String ifMod * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1018,8 +1047,9 @@ private okhttp3.Call getEventTeamsValidateBeforeCall(String eventKey, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1038,8 +1068,9 @@ public List getEventTeams(String eventKey, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1060,8 +1091,9 @@ public ApiResponse> getEventTeamsWithHttpInfo(String eventKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1082,8 +1114,9 @@ public okhttp3.Call getEventTeamsAsync(String eventKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1145,8 +1178,9 @@ private okhttp3.Call getEventTeamsKeysValidateBeforeCall(String eventKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1165,8 +1199,9 @@ public List getEventTeamsKeys(String eventKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1187,8 +1222,9 @@ public ApiResponse> getEventTeamsKeysWithHttpInfo(String eventKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1209,8 +1245,9 @@ public okhttp3.Call getEventTeamsKeysAsync(String eventKey, String ifModifiedSin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1272,8 +1309,9 @@ private okhttp3.Call getEventTeamsSimpleValidateBeforeCall(String eventKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1292,8 +1330,9 @@ public List getEventTeamsSimple(String eventKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1314,8 +1353,9 @@ public ApiResponse> getEventTeamsSimpleWithHttpInfo(String even * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1336,8 +1376,9 @@ public okhttp3.Call getEventTeamsSimpleAsync(String eventKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1399,8 +1440,9 @@ private okhttp3.Call getEventTeamsStatusesValidateBeforeCall(String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Map<String, TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1419,8 +1461,9 @@ public Map getEventTeamsStatuses(String eventKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Map<String, TeamEventStatus>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1441,8 +1484,9 @@ public ApiResponse> getEventTeamsStatusesWithHttpIn * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1463,8 +1507,9 @@ public okhttp3.Call getEventTeamsStatusesAsync(String eventKey, String ifModifie * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1526,8 +1571,9 @@ private okhttp3.Call getEventsByYearValidateBeforeCall(Integer year, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1546,8 +1592,9 @@ public List getEventsByYear(Integer year, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1568,8 +1615,9 @@ public ApiResponse> getEventsByYearWithHttpInfo(Integer year, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1590,8 +1638,9 @@ public okhttp3.Call getEventsByYearAsync(Integer year, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1653,8 +1702,9 @@ private okhttp3.Call getEventsByYearKeysValidateBeforeCall(Integer year, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1673,8 +1723,9 @@ public List getEventsByYearKeys(Integer year, String ifModifiedSince) th * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1695,8 +1746,9 @@ public ApiResponse> getEventsByYearKeysWithHttpInfo(Integer year, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1717,8 +1769,9 @@ public okhttp3.Call getEventsByYearKeysAsync(Integer year, String ifModifiedSinc * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1780,8 +1833,9 @@ private okhttp3.Call getEventsByYearSimpleValidateBeforeCall(Integer year, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1800,8 +1854,9 @@ public List getEventsByYearSimple(Integer year, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1822,8 +1877,9 @@ public ApiResponse> getEventsByYearSimpleWithHttpInfo(Integer * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1845,8 +1901,9 @@ public okhttp3.Call getEventsByYearSimpleAsync(Integer year, String ifModifiedSi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1915,8 +1972,9 @@ private okhttp3.Call getTeamEventsStatusesByYearValidateBeforeCall(String teamKe * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Map<String, TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1936,8 +1994,9 @@ public Map getTeamEventsStatusesByYear(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Map<String, TeamEventStatus>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1959,8 +2018,9 @@ public ApiResponse> getTeamEventsStatusesByYearWith * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1981,8 +2041,9 @@ public okhttp3.Call getTeamEventsStatusesByYearAsync(String teamKey, Integer yea * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2044,8 +2105,9 @@ private okhttp3.Call getTeamsValidateBeforeCall(Integer pageNum, String ifModifi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2064,8 +2126,9 @@ public List getTeams(Integer pageNum, String ifModifiedSince) throws ApiEx * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2086,8 +2149,9 @@ public ApiResponse> getTeamsWithHttpInfo(Integer pageNum, String ifMo * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2109,8 +2173,9 @@ public okhttp3.Call getTeamsAsync(Integer pageNum, String ifModifiedSince, final * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2179,8 +2244,9 @@ private okhttp3.Call getTeamsByYearValidateBeforeCall(Integer year, Integer page * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2200,8 +2266,9 @@ public List getTeamsByYear(Integer year, Integer pageNum, String ifModifie * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2223,8 +2290,9 @@ public ApiResponse> getTeamsByYearWithHttpInfo(Integer year, Integer * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2246,8 +2314,9 @@ public okhttp3.Call getTeamsByYearAsync(Integer year, Integer pageNum, String if * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2316,8 +2385,9 @@ private okhttp3.Call getTeamsByYearKeysValidateBeforeCall(Integer year, Integer * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2337,8 +2407,9 @@ public List getTeamsByYearKeys(Integer year, Integer pageNum, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2360,8 +2431,9 @@ public ApiResponse> getTeamsByYearKeysWithHttpInfo(Integer year, In * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2383,8 +2455,9 @@ public okhttp3.Call getTeamsByYearKeysAsync(Integer year, Integer pageNum, Strin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2453,8 +2526,9 @@ private okhttp3.Call getTeamsByYearSimpleValidateBeforeCall(Integer year, Intege * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2474,8 +2548,9 @@ public List getTeamsByYearSimple(Integer year, Integer pageNum, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2497,8 +2572,9 @@ public ApiResponse> getTeamsByYearSimpleWithHttpInfo(Integer ye * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2519,8 +2595,9 @@ public okhttp3.Call getTeamsByYearSimpleAsync(Integer year, Integer pageNum, Str * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2582,8 +2659,9 @@ private okhttp3.Call getTeamsKeysValidateBeforeCall(Integer pageNum, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2602,8 +2680,9 @@ public List getTeamsKeys(Integer pageNum, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2624,8 +2703,9 @@ public ApiResponse> getTeamsKeysWithHttpInfo(Integer pageNum, Strin * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2646,8 +2726,9 @@ public okhttp3.Call getTeamsKeysAsync(Integer pageNum, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2709,8 +2790,9 @@ private okhttp3.Call getTeamsSimpleValidateBeforeCall(Integer pageNum, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2729,8 +2811,9 @@ public List getTeamsSimple(Integer pageNum, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2751,8 +2834,9 @@ public ApiResponse> getTeamsSimpleWithHttpInfo(Integer pageNum, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/api/MatchApi.java b/src/main/java/net/thefletcher/tbaapi/v3client/api/MatchApi.java index 0a8d3ac..f5026e4 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/api/MatchApi.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/api/MatchApi.java @@ -63,8 +63,9 @@ public void setApiClient(ApiClient apiClient) { * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -126,8 +127,9 @@ private okhttp3.Call getEventMatchTimeseriesValidateBeforeCall(String eventKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -146,8 +148,9 @@ public List getEventMatchTimeseries(String eventKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -168,8 +171,9 @@ public ApiResponse> getEventMatchTimeseriesWithHttpInfo(String even * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -190,8 +194,9 @@ public okhttp3.Call getEventMatchTimeseriesAsync(String eventKey, String ifModif * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -253,8 +258,9 @@ private okhttp3.Call getEventMatchesValidateBeforeCall(String eventKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -273,8 +279,9 @@ public List getEventMatches(String eventKey, String ifModifiedSince) thro * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -295,8 +302,9 @@ public ApiResponse> getEventMatchesWithHttpInfo(String eventKey, Str * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -317,8 +325,9 @@ public okhttp3.Call getEventMatchesAsync(String eventKey, String ifModifiedSince * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -380,8 +389,9 @@ private okhttp3.Call getEventMatchesKeysValidateBeforeCall(String eventKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -400,8 +410,9 @@ public List getEventMatchesKeys(String eventKey, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -422,8 +433,9 @@ public ApiResponse> getEventMatchesKeysWithHttpInfo(String eventKey * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -444,8 +456,9 @@ public okhttp3.Call getEventMatchesKeysAsync(String eventKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -507,8 +520,9 @@ private okhttp3.Call getEventMatchesSimpleValidateBeforeCall(String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<MatchSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -527,8 +541,9 @@ public List getEventMatchesSimple(String eventKey, String ifModifie * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<MatchSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -549,8 +564,9 @@ public ApiResponse> getEventMatchesSimpleWithHttpInfo(String e * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -571,8 +587,9 @@ public okhttp3.Call getEventMatchesSimpleAsync(String eventKey, String ifModifie * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -634,8 +651,9 @@ private okhttp3.Call getMatchValidateBeforeCall(String matchKey, String ifModifi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Match * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -654,8 +672,9 @@ public Match getMatch(String matchKey, String ifModifiedSince) throws ApiExcepti * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -676,8 +695,9 @@ public ApiResponse getMatchWithHttpInfo(String matchKey, String ifModifie * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -698,8 +718,9 @@ public okhttp3.Call getMatchAsync(String matchKey, String ifModifiedSince, final * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -761,8 +782,9 @@ private okhttp3.Call getMatchSimpleValidateBeforeCall(String matchKey, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return MatchSimple * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -781,8 +803,9 @@ public MatchSimple getMatchSimple(String matchKey, String ifModifiedSince) throw * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<MatchSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -803,8 +826,9 @@ public ApiResponse getMatchSimpleWithHttpInfo(String matchKey, Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -825,8 +849,9 @@ public okhttp3.Call getMatchSimpleAsync(String matchKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -888,8 +913,9 @@ private okhttp3.Call getMatchTimeseriesValidateBeforeCall(String matchKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Object> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -908,8 +934,9 @@ public List getMatchTimeseries(String matchKey, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Object>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -930,8 +957,9 @@ public ApiResponse> getMatchTimeseriesWithHttpInfo(String matchKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -952,8 +980,9 @@ public okhttp3.Call getMatchTimeseriesAsync(String matchKey, String ifModifiedSi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1015,8 +1044,9 @@ private okhttp3.Call getMatchZebraValidateBeforeCall(String matchKey, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Zebra * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1035,8 +1065,9 @@ public Zebra getMatchZebra(String matchKey, String ifModifiedSince) throws ApiEx * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Zebra> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1057,8 +1088,9 @@ public ApiResponse getMatchZebraWithHttpInfo(String matchKey, String ifMo * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1080,8 +1112,9 @@ public okhttp3.Call getMatchZebraAsync(String matchKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1150,8 +1183,9 @@ private okhttp3.Call getTeamEventMatchesValidateBeforeCall(String teamKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1171,8 +1205,9 @@ public List getTeamEventMatches(String teamKey, String eventKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1194,8 +1229,9 @@ public ApiResponse> getTeamEventMatchesWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1217,8 +1253,9 @@ public okhttp3.Call getTeamEventMatchesAsync(String teamKey, String eventKey, St * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1287,8 +1324,9 @@ private okhttp3.Call getTeamEventMatchesKeysValidateBeforeCall(String teamKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1308,8 +1346,9 @@ public List getTeamEventMatchesKeys(String teamKey, String eventKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1331,8 +1370,9 @@ public ApiResponse> getTeamEventMatchesKeysWithHttpInfo(String team * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1354,8 +1394,9 @@ public okhttp3.Call getTeamEventMatchesKeysAsync(String teamKey, String eventKey * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1424,8 +1465,9 @@ private okhttp3.Call getTeamEventMatchesSimpleValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1445,8 +1487,9 @@ public List getTeamEventMatchesSimple(String teamKey, String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1468,8 +1511,9 @@ public ApiResponse> getTeamEventMatchesSimpleWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1491,8 +1535,9 @@ public okhttp3.Call getTeamEventMatchesSimpleAsync(String teamKey, String eventK * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1561,8 +1606,9 @@ private okhttp3.Call getTeamMatchesByYearValidateBeforeCall(String teamKey, Inte * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1582,8 +1628,9 @@ public List getTeamMatchesByYear(String teamKey, Integer year, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1605,8 +1652,9 @@ public ApiResponse> getTeamMatchesByYearWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1628,8 +1676,9 @@ public okhttp3.Call getTeamMatchesByYearAsync(String teamKey, Integer year, Stri * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1698,8 +1747,9 @@ private okhttp3.Call getTeamMatchesByYearKeysValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1719,8 +1769,9 @@ public List getTeamMatchesByYearKeys(String teamKey, Integer year, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1742,8 +1793,9 @@ public ApiResponse> getTeamMatchesByYearKeysWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1765,8 +1817,9 @@ public okhttp3.Call getTeamMatchesByYearKeysAsync(String teamKey, Integer year, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1835,8 +1888,9 @@ private okhttp3.Call getTeamMatchesByYearSimpleValidateBeforeCall(String teamKey * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<MatchSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1856,8 +1910,9 @@ public List getTeamMatchesByYearSimple(String teamKey, Integer year * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<MatchSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1879,8 +1934,9 @@ public ApiResponse> getTeamMatchesByYearSimpleWithHttpInfo(Str * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/api/TbaApi.java b/src/main/java/net/thefletcher/tbaapi/v3client/api/TbaApi.java index 3849119..653ee93 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/api/TbaApi.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/api/TbaApi.java @@ -60,8 +60,9 @@ public void setApiClient(ApiClient apiClient) { * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -116,8 +117,9 @@ private okhttp3.Call getStatusValidateBeforeCall(String ifModifiedSince, final A * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return APIStatus * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -135,8 +137,9 @@ public APIStatus getStatus(String ifModifiedSince) throws ApiException { * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<APIStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -156,8 +159,9 @@ public ApiResponse getStatusWithHttpInfo(String ifModifiedSince) thro * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/api/TeamApi.java b/src/main/java/net/thefletcher/tbaapi/v3client/api/TeamApi.java index b1c328f..35e2c31 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/api/TeamApi.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/api/TeamApi.java @@ -72,8 +72,9 @@ public void setApiClient(ApiClient apiClient) { * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -135,8 +136,9 @@ private okhttp3.Call getDistrictRankingsValidateBeforeCall(String districtKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<DistrictRanking> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -155,8 +157,9 @@ public List getDistrictRankings(String districtKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<DistrictRanking>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -177,8 +180,9 @@ public ApiResponse> getDistrictRankingsWithHttpInfo(String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -199,8 +203,9 @@ public okhttp3.Call getDistrictRankingsAsync(String districtKey, String ifModifi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -262,8 +267,9 @@ private okhttp3.Call getDistrictTeamsValidateBeforeCall(String districtKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -282,8 +288,9 @@ public List getDistrictTeams(String districtKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -304,8 +311,9 @@ public ApiResponse> getDistrictTeamsWithHttpInfo(String districtKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -326,8 +334,9 @@ public okhttp3.Call getDistrictTeamsAsync(String districtKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -389,8 +398,9 @@ private okhttp3.Call getDistrictTeamsKeysValidateBeforeCall(String districtKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -409,8 +419,9 @@ public List getDistrictTeamsKeys(String districtKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -431,8 +442,9 @@ public ApiResponse> getDistrictTeamsKeysWithHttpInfo(String distric * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -453,8 +465,9 @@ public okhttp3.Call getDistrictTeamsKeysAsync(String districtKey, String ifModif * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -516,8 +529,9 @@ private okhttp3.Call getDistrictTeamsSimpleValidateBeforeCall(String districtKey * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -536,8 +550,9 @@ public List getDistrictTeamsSimple(String districtKey, String ifModi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -558,8 +573,9 @@ public ApiResponse> getDistrictTeamsSimpleWithHttpInfo(String d * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -580,8 +596,9 @@ public okhttp3.Call getDistrictTeamsSimpleAsync(String districtKey, String ifMod * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -643,8 +660,9 @@ private okhttp3.Call getEventTeamsValidateBeforeCall(String eventKey, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -663,8 +681,9 @@ public List getEventTeams(String eventKey, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -685,8 +704,9 @@ public ApiResponse> getEventTeamsWithHttpInfo(String eventKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -707,8 +727,9 @@ public okhttp3.Call getEventTeamsAsync(String eventKey, String ifModifiedSince, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -770,8 +791,9 @@ private okhttp3.Call getEventTeamsKeysValidateBeforeCall(String eventKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -790,8 +812,9 @@ public List getEventTeamsKeys(String eventKey, String ifModifiedSince) t * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -812,8 +835,9 @@ public ApiResponse> getEventTeamsKeysWithHttpInfo(String eventKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -834,8 +858,9 @@ public okhttp3.Call getEventTeamsKeysAsync(String eventKey, String ifModifiedSin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -897,8 +922,9 @@ private okhttp3.Call getEventTeamsSimpleValidateBeforeCall(String eventKey, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -917,8 +943,9 @@ public List getEventTeamsSimple(String eventKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -939,8 +966,9 @@ public ApiResponse> getEventTeamsSimpleWithHttpInfo(String even * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -961,8 +989,9 @@ public okhttp3.Call getEventTeamsSimpleAsync(String eventKey, String ifModifiedS * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1024,8 +1053,9 @@ private okhttp3.Call getEventTeamsStatusesValidateBeforeCall(String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Map<String, TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1044,8 +1074,9 @@ public Map getEventTeamsStatuses(String eventKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Map<String, TeamEventStatus>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1066,8 +1097,9 @@ public ApiResponse> getEventTeamsStatusesWithHttpIn * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1088,8 +1120,9 @@ public okhttp3.Call getEventTeamsStatusesAsync(String eventKey, String ifModifie * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1151,8 +1184,9 @@ private okhttp3.Call getTeamValidateBeforeCall(String teamKey, String ifModified * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Team * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1171,8 +1205,9 @@ public Team getTeam(String teamKey, String ifModifiedSince) throws ApiException * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1193,8 +1228,9 @@ public ApiResponse getTeamWithHttpInfo(String teamKey, String ifModifiedSi * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1215,8 +1251,9 @@ public okhttp3.Call getTeamAsync(String teamKey, String ifModifiedSince, final A * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1278,8 +1315,9 @@ private okhttp3.Call getTeamAwardsValidateBeforeCall(String teamKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Award> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1298,8 +1336,9 @@ public List getTeamAwards(String teamKey, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Award>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1320,8 +1359,9 @@ public ApiResponse> getTeamAwardsWithHttpInfo(String teamKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1343,8 +1383,9 @@ public okhttp3.Call getTeamAwardsAsync(String teamKey, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1413,8 +1454,9 @@ private okhttp3.Call getTeamAwardsByYearValidateBeforeCall(String teamKey, Integ * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Award> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1434,8 +1476,9 @@ public List getTeamAwardsByYear(String teamKey, Integer year, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Award>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1457,8 +1500,9 @@ public ApiResponse> getTeamAwardsByYearWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1479,8 +1523,9 @@ public okhttp3.Call getTeamAwardsByYearAsync(String teamKey, Integer year, Strin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1542,8 +1587,9 @@ private okhttp3.Call getTeamDistrictsValidateBeforeCall(String teamKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<DistrictList> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1562,8 +1608,9 @@ public List getTeamDistricts(String teamKey, String ifModifiedSinc * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<DistrictList>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1584,8 +1631,9 @@ public ApiResponse> getTeamDistrictsWithHttpInfo(String teamK * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1607,8 +1655,9 @@ public okhttp3.Call getTeamDistrictsAsync(String teamKey, String ifModifiedSince * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1677,8 +1726,9 @@ private okhttp3.Call getTeamEventAwardsValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Award> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1698,8 +1748,9 @@ public List getTeamEventAwards(String teamKey, String eventKey, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Award>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1721,8 +1772,9 @@ public ApiResponse> getTeamEventAwardsWithHttpInfo(String teamKey, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1744,8 +1796,9 @@ public okhttp3.Call getTeamEventAwardsAsync(String teamKey, String eventKey, Str * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1814,8 +1867,9 @@ private okhttp3.Call getTeamEventMatchesValidateBeforeCall(String teamKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1835,8 +1889,9 @@ public List getTeamEventMatches(String teamKey, String eventKey, String i * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1858,8 +1913,9 @@ public ApiResponse> getTeamEventMatchesWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1881,8 +1937,9 @@ public okhttp3.Call getTeamEventMatchesAsync(String teamKey, String eventKey, St * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1951,8 +2008,9 @@ private okhttp3.Call getTeamEventMatchesKeysValidateBeforeCall(String teamKey, S * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1972,8 +2030,9 @@ public List getTeamEventMatchesKeys(String teamKey, String eventKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -1995,8 +2054,9 @@ public ApiResponse> getTeamEventMatchesKeysWithHttpInfo(String team * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2018,8 +2078,9 @@ public okhttp3.Call getTeamEventMatchesKeysAsync(String teamKey, String eventKey * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2088,8 +2149,9 @@ private okhttp3.Call getTeamEventMatchesSimpleValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2109,8 +2171,9 @@ public List getTeamEventMatchesSimple(String teamKey, String eventKey, St * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2132,8 +2195,9 @@ public ApiResponse> getTeamEventMatchesSimpleWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2155,8 +2219,9 @@ public okhttp3.Call getTeamEventMatchesSimpleAsync(String teamKey, String eventK * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2225,8 +2290,9 @@ private okhttp3.Call getTeamEventStatusValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return TeamEventStatus * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2246,8 +2312,9 @@ public TeamEventStatus getTeamEventStatus(String teamKey, String eventKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2269,8 +2336,9 @@ public ApiResponse getTeamEventStatusWithHttpInfo(String teamKe * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2291,8 +2359,9 @@ public okhttp3.Call getTeamEventStatusAsync(String teamKey, String eventKey, Str * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2354,8 +2423,9 @@ private okhttp3.Call getTeamEventsValidateBeforeCall(String teamKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2374,8 +2444,9 @@ public List getTeamEvents(String teamKey, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2396,8 +2467,9 @@ public ApiResponse> getTeamEventsWithHttpInfo(String teamKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2419,8 +2491,9 @@ public okhttp3.Call getTeamEventsAsync(String teamKey, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2489,8 +2562,9 @@ private okhttp3.Call getTeamEventsByYearValidateBeforeCall(String teamKey, Integ * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Event> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2510,8 +2584,9 @@ public List getTeamEventsByYear(String teamKey, Integer year, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Event>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2533,8 +2608,9 @@ public ApiResponse> getTeamEventsByYearWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2556,8 +2632,9 @@ public okhttp3.Call getTeamEventsByYearAsync(String teamKey, Integer year, Strin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2626,8 +2703,9 @@ private okhttp3.Call getTeamEventsByYearKeysValidateBeforeCall(String teamKey, I * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2647,8 +2725,9 @@ public List getTeamEventsByYearKeys(String teamKey, Integer year, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2670,8 +2749,9 @@ public ApiResponse> getTeamEventsByYearKeysWithHttpInfo(String team * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2693,8 +2773,9 @@ public okhttp3.Call getTeamEventsByYearKeysAsync(String teamKey, Integer year, S * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2763,8 +2844,9 @@ private okhttp3.Call getTeamEventsByYearSimpleValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2784,8 +2866,9 @@ public List getTeamEventsByYearSimple(String teamKey, Integer year, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2807,8 +2890,9 @@ public ApiResponse> getTeamEventsByYearSimpleWithHttpInfo(Stri * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2829,8 +2913,9 @@ public okhttp3.Call getTeamEventsByYearSimpleAsync(String teamKey, Integer year, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2892,8 +2977,9 @@ private okhttp3.Call getTeamEventsKeysValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2912,8 +2998,9 @@ public List getTeamEventsKeys(String teamKey, String ifModifiedSince) th * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2934,8 +3021,9 @@ public ApiResponse> getTeamEventsKeysWithHttpInfo(String teamKey, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -2956,8 +3044,9 @@ public okhttp3.Call getTeamEventsKeysAsync(String teamKey, String ifModifiedSinc * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3019,8 +3108,9 @@ private okhttp3.Call getTeamEventsSimpleValidateBeforeCall(String teamKey, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<EventSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3039,8 +3129,9 @@ public List getTeamEventsSimple(String teamKey, String ifModifiedSi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<EventSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3061,8 +3152,9 @@ public ApiResponse> getTeamEventsSimpleWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3084,8 +3176,9 @@ public okhttp3.Call getTeamEventsSimpleAsync(String teamKey, String ifModifiedSi * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3154,8 +3247,9 @@ private okhttp3.Call getTeamEventsStatusesByYearValidateBeforeCall(String teamKe * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return Map<String, TeamEventStatus> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3175,8 +3269,9 @@ public Map getTeamEventsStatusesByYear(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<Map<String, TeamEventStatus>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3198,8 +3293,9 @@ public ApiResponse> getTeamEventsStatusesByYearWith * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3221,8 +3317,9 @@ public okhttp3.Call getTeamEventsStatusesByYearAsync(String teamKey, Integer yea * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3291,8 +3388,9 @@ private okhttp3.Call getTeamMatchesByYearValidateBeforeCall(String teamKey, Inte * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Match> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3312,8 +3410,9 @@ public List getTeamMatchesByYear(String teamKey, Integer year, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Match>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3335,8 +3434,9 @@ public ApiResponse> getTeamMatchesByYearWithHttpInfo(String teamKey, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3358,8 +3458,9 @@ public okhttp3.Call getTeamMatchesByYearAsync(String teamKey, Integer year, Stri * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3428,8 +3529,9 @@ private okhttp3.Call getTeamMatchesByYearKeysValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3449,8 +3551,9 @@ public List getTeamMatchesByYearKeys(String teamKey, Integer year, Strin * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3472,8 +3575,9 @@ public ApiResponse> getTeamMatchesByYearKeysWithHttpInfo(String tea * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3495,8 +3599,9 @@ public okhttp3.Call getTeamMatchesByYearKeysAsync(String teamKey, Integer year, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3565,8 +3670,9 @@ private okhttp3.Call getTeamMatchesByYearSimpleValidateBeforeCall(String teamKey * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<MatchSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3586,8 +3692,9 @@ public List getTeamMatchesByYearSimple(String teamKey, Integer year * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<MatchSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3609,8 +3716,9 @@ public ApiResponse> getTeamMatchesByYearSimpleWithHttpInfo(Str * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3632,8 +3740,9 @@ public okhttp3.Call getTeamMatchesByYearSimpleAsync(String teamKey, Integer year * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3702,8 +3811,9 @@ private okhttp3.Call getTeamMediaByTagValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Media> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3723,8 +3833,9 @@ public List getTeamMediaByTag(String teamKey, String mediaTag, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Media>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3746,8 +3857,9 @@ public ApiResponse> getTeamMediaByTagWithHttpInfo(String teamKey, St * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3770,8 +3882,9 @@ public okhttp3.Call getTeamMediaByTagAsync(String teamKey, String mediaTag, Stri * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3847,8 +3960,9 @@ private okhttp3.Call getTeamMediaByTagYearValidateBeforeCall(String teamKey, Str * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Media> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3869,8 +3983,9 @@ public List getTeamMediaByTagYear(String teamKey, String mediaTag, Intege * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Media>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3893,8 +4008,9 @@ public ApiResponse> getTeamMediaByTagYearWithHttpInfo(String teamKey * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3916,8 +4032,9 @@ public okhttp3.Call getTeamMediaByTagYearAsync(String teamKey, String mediaTag, * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -3986,8 +4103,9 @@ private okhttp3.Call getTeamMediaByYearValidateBeforeCall(String teamKey, Intege * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Media> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4007,8 +4125,9 @@ public List getTeamMediaByYear(String teamKey, Integer year, String ifMod * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Media>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4030,8 +4149,9 @@ public ApiResponse> getTeamMediaByYearWithHttpInfo(String teamKey, I * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4052,8 +4172,9 @@ public okhttp3.Call getTeamMediaByYearAsync(String teamKey, Integer year, String * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4115,8 +4236,9 @@ private okhttp3.Call getTeamRobotsValidateBeforeCall(String teamKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamRobot> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4135,8 +4257,9 @@ public List getTeamRobots(String teamKey, String ifModifiedSince) thr * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamRobot>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4157,8 +4280,9 @@ public ApiResponse> getTeamRobotsWithHttpInfo(String teamKey, St * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4179,8 +4303,9 @@ public okhttp3.Call getTeamRobotsAsync(String teamKey, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4242,8 +4367,9 @@ private okhttp3.Call getTeamSimpleValidateBeforeCall(String teamKey, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return TeamSimple * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4262,8 +4388,9 @@ public TeamSimple getTeamSimple(String teamKey, String ifModifiedSince) throws A * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4284,8 +4411,9 @@ public ApiResponse getTeamSimpleWithHttpInfo(String teamKey, String * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4306,8 +4434,9 @@ public okhttp3.Call getTeamSimpleAsync(String teamKey, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4369,8 +4498,9 @@ private okhttp3.Call getTeamSocialMediaValidateBeforeCall(String teamKey, String * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Media> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4389,8 +4519,9 @@ public List getTeamSocialMedia(String teamKey, String ifModifiedSince) th * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Media>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4411,8 +4542,9 @@ public ApiResponse> getTeamSocialMediaWithHttpInfo(String teamKey, S * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4433,8 +4565,9 @@ public okhttp3.Call getTeamSocialMediaAsync(String teamKey, String ifModifiedSin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4496,8 +4629,9 @@ private okhttp3.Call getTeamYearsParticipatedValidateBeforeCall(String teamKey, * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Integer> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4516,8 +4650,9 @@ public List getTeamYearsParticipated(String teamKey, String ifModifiedS * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Integer>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4538,8 +4673,9 @@ public ApiResponse> getTeamYearsParticipatedWithHttpInfo(String te * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4560,8 +4696,9 @@ public okhttp3.Call getTeamYearsParticipatedAsync(String teamKey, String ifModif * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4623,8 +4760,9 @@ private okhttp3.Call getTeamsValidateBeforeCall(Integer pageNum, String ifModifi * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4643,8 +4781,9 @@ public List getTeams(Integer pageNum, String ifModifiedSince) throws ApiEx * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4665,8 +4804,9 @@ public ApiResponse> getTeamsWithHttpInfo(Integer pageNum, String ifMo * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4688,8 +4828,9 @@ public okhttp3.Call getTeamsAsync(Integer pageNum, String ifModifiedSince, final * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4758,8 +4899,9 @@ private okhttp3.Call getTeamsByYearValidateBeforeCall(Integer year, Integer page * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<Team> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4779,8 +4921,9 @@ public List getTeamsByYear(Integer year, Integer pageNum, String ifModifie * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<Team>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4802,8 +4945,9 @@ public ApiResponse> getTeamsByYearWithHttpInfo(Integer year, Integer * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4825,8 +4969,9 @@ public okhttp3.Call getTeamsByYearAsync(Integer year, Integer pageNum, String if * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4895,8 +5040,9 @@ private okhttp3.Call getTeamsByYearKeysValidateBeforeCall(Integer year, Integer * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4916,8 +5062,9 @@ public List getTeamsByYearKeys(Integer year, Integer pageNum, String ifM * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4939,8 +5086,9 @@ public ApiResponse> getTeamsByYearKeysWithHttpInfo(Integer year, In * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -4962,8 +5110,9 @@ public okhttp3.Call getTeamsByYearKeysAsync(Integer year, Integer pageNum, Strin * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5032,8 +5181,9 @@ private okhttp3.Call getTeamsByYearSimpleValidateBeforeCall(Integer year, Intege * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5053,8 +5203,9 @@ public List getTeamsByYearSimple(Integer year, Integer pageNum, Stri * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5076,8 +5227,9 @@ public ApiResponse> getTeamsByYearSimpleWithHttpInfo(Integer ye * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5098,8 +5250,9 @@ public okhttp3.Call getTeamsByYearSimpleAsync(Integer year, Integer pageNum, Str * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5161,8 +5314,9 @@ private okhttp3.Call getTeamsKeysValidateBeforeCall(Integer pageNum, String ifMo * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<String> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5181,8 +5335,9 @@ public List getTeamsKeys(Integer pageNum, String ifModifiedSince) throws * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<String>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5203,8 +5358,9 @@ public ApiResponse> getTeamsKeysWithHttpInfo(Integer pageNum, Strin * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5225,8 +5381,9 @@ public okhttp3.Call getTeamsKeysAsync(Integer pageNum, String ifModifiedSince, f * @param _callback Callback for upload/download progress * @return Call to execute * @throws ApiException If fail to serialize the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5288,8 +5445,9 @@ private okhttp3.Call getTeamsSimpleValidateBeforeCall(Integer pageNum, String if * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return List<TeamSimple> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5308,8 +5466,9 @@ public List getTeamsSimple(Integer pageNum, String ifModifiedSince) * @param ifModifiedSince Value of the `Last-Modified` header in the most recently cached response by the client. (optional) * @return ApiResponse<List<TeamSimple>> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ @@ -5330,8 +5489,9 @@ public ApiResponse> getTeamsSimpleWithHttpInfo(Integer pageNum, * @param _callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object - * @http.response.details -
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -
+ +
+ diff --git a/src/main/java/net/thefletcher/tbaapi/v3client/auth/OAuth.java b/src/main/java/net/thefletcher/tbaapi/v3client/auth/OAuth.java index 18b5d99..818863d 100644 --- a/src/main/java/net/thefletcher/tbaapi/v3client/auth/OAuth.java +++ b/src/main/java/net/thefletcher/tbaapi/v3client/auth/OAuth.java @@ -31,7 +31,7 @@ public void setAccessToken(String accessToken) { } @Override - public void applyToParams(List queryParams, Map headerParams) { + public void applyToParams(List queryParams, Map headerParams, Map cookieParams) { if (accessToken != null) { headerParams.put("Authorization", "Bearer " + accessToken); } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java index 3295d37..5f546b0 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java @@ -278,7 +278,7 @@ public void getEventOPRsTest() throws ApiException { public void getEventPredictionsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; - EventPredictions response = api.getEventPredictions(eventKey, ifModifiedSince); + EventPredictions response = (EventPredictions) api.getEventPredictions(eventKey, ifModifiedSince); // TODO: test validations } From f3f31d7ba36b1dd31f5490bd663ea04d75937eb4 Mon Sep 17 00:00:00 2001 From: matthew Date: Sun, 22 Jan 2023 23:03:50 -0500 Subject: [PATCH 2/3] upgrade to junit5; --- pom.xml | 23 ++-- .../tbaapi/v3client/api/DistrictApiTest.java | 29 ++--- .../tbaapi/v3client/api/EventApiTest.java | 79 ++++++------ .../tbaapi/v3client/api/ListApiTest.java | 51 ++++---- .../tbaapi/v3client/api/MatchApiTest.java | 35 +++--- .../tbaapi/v3client/api/TbaApiTest.java | 11 +- .../tbaapi/v3client/api/TeamApiTest.java | 88 +++++++------- .../model/APIStatusAppVersionTest.java | 14 +-- .../tbaapi/v3client/model/APIStatusTest.java | 22 ++-- .../v3client/model/AwardRecipientTest.java | 14 +-- .../tbaapi/v3client/model/AwardTest.java | 20 ++-- .../v3client/model/DistrictListTest.java | 18 +-- .../model/DistrictRankingEventPointsTest.java | 24 ++-- .../v3client/model/DistrictRankingTest.java | 20 ++-- .../model/EliminationAllianceBackupTest.java | 14 +-- .../model/EliminationAllianceStatusTest.java | 20 ++-- .../model/EliminationAllianceTest.java | 20 ++-- .../model/EventDistrictPointsPointsTest.java | 18 ++- .../model/EventDistrictPointsTest.java | 14 +-- .../EventDistrictPointsTiebreakersTest.java | 14 +-- .../v3client/model/EventInsights2016Test.java | 58 ++++----- .../v3client/model/EventInsights2017Test.java | 74 ++++++------ .../v3client/model/EventInsights2018Test.java | 84 ++++++------- .../v3client/model/EventInsightsTest.java | 14 +-- .../tbaapi/v3client/model/EventOPRsTest.java | 16 +-- .../model/EventRankingExtraStatsInfoTest.java | 14 +-- .../model/EventRankingRankingsTest.java | 26 ++-- .../model/EventRankingSortOrderInfoTest.java | 14 +-- .../v3client/model/EventRankingTest.java | 16 +-- .../v3client/model/EventSimpleTest.java | 32 ++--- .../tbaapi/v3client/model/EventTest.java | 70 +++++------ .../v3client/model/MatchAllianceTest.java | 18 +-- .../v3client/model/MatchAlliancesTest.java | 14 +-- .../MatchScoreBreakdown2015AllianceTest.java | 58 ++++----- .../model/MatchScoreBreakdown2015Test.java | 18 +-- .../MatchScoreBreakdown2016AllianceTest.java | 86 +++++++------- .../model/MatchScoreBreakdown2016Test.java | 14 +-- .../MatchScoreBreakdown2017AllianceTest.java | 76 ++++++------ .../model/MatchScoreBreakdown2017Test.java | 14 +-- .../MatchScoreBreakdown2018AllianceTest.java | 84 ++++++------- .../model/MatchScoreBreakdown2018Test.java | 13 +- .../MatchScoreBreakdown2019AllianceTest.java | 112 +++++++++--------- .../model/MatchScoreBreakdown2019Test.java | 13 +- .../MatchScoreBreakdown2020AllianceTest.java | 78 ++++++------ .../model/MatchScoreBreakdown2020Test.java | 13 +- .../model/MatchSimpleAlliancesTest.java | 14 +-- .../v3client/model/MatchSimpleTest.java | 30 ++--- .../tbaapi/v3client/model/MatchTest.java | 36 +++--- .../model/MatchTimeseries2018Test.java | 72 +++++------ .../v3client/model/MatchVideosTest.java | 14 +-- .../tbaapi/v3client/model/MediaTest.java | 24 ++-- .../TeamEventStatusAllianceBackupTest.java | 14 +-- .../model/TeamEventStatusAllianceTest.java | 18 +-- .../model/TeamEventStatusPlayoffTest.java | 20 ++-- .../model/TeamEventStatusRankRankingTest.java | 24 ++-- .../TeamEventStatusRankSortOrderInfoTest.java | 14 +-- .../model/TeamEventStatusRankTest.java | 18 +-- .../v3client/model/TeamEventStatusTest.java | 26 ++-- .../tbaapi/v3client/model/TeamRobotTest.java | 18 +-- .../tbaapi/v3client/model/TeamSimpleTest.java | 24 ++-- .../tbaapi/v3client/model/TeamTest.java | 46 +++---- .../tbaapi/v3client/model/WLTRecordTest.java | 16 +-- .../tbaapi/v3client/model/WebcastTest.java | 16 +-- .../v3client/model/ZebraAlliancesTest.java | 14 +-- .../tbaapi/v3client/model/ZebraTeamTest.java | 16 +-- .../tbaapi/v3client/model/ZebraTest.java | 16 +-- 66 files changed, 1034 insertions(+), 1033 deletions(-) diff --git a/pom.xml b/pom.xml index d347af2..0de765b 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,6 @@ -Xms512m -Xmx1500m methods - pertest 8 @@ -115,7 +114,8 @@ - src/main/java + src/main/java + @@ -128,7 +128,8 @@ - src/test/java + src/test/java + @@ -213,11 +214,11 @@ gson-fire ${gson-fire-version} - - org.threeten - threetenbp - ${threetenbp-version} - + + org.threeten + threetenbp + ${threetenbp-version} + com.google.code.findbugs @@ -227,8 +228,8 @@ - junit - junit + org.junit.jupiter + junit-jupiter-api ${junit-version} test @@ -259,6 +260,6 @@ 3.0.2 - 4.12 + 5.9.2 diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/DistrictApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/DistrictApiTest.java index 7db3ec1..1f0f247 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/DistrictApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/DistrictApiTest.java @@ -21,8 +21,9 @@ import net.thefletcher.tbaapi.v3client.model.EventSimple; import net.thefletcher.tbaapi.v3client.model.Team; import net.thefletcher.tbaapi.v3client.model.TeamSimple; -import org.junit.Test; -import org.junit.Ignore; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + import java.util.ArrayList; import java.util.HashMap; @@ -32,8 +33,8 @@ /** * API tests for DistrictApi */ -@Ignore -public class DistrictApiTest { +@Disabled +class DistrictApiTest { private final DistrictApi api = new DistrictApi(); @@ -47,7 +48,7 @@ public class DistrictApiTest { * if the Api call fails */ @Test - public void getDistrictEventsTest() throws ApiException { + void getDistrictEventsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEvents(districtKey, ifModifiedSince); @@ -64,7 +65,7 @@ public void getDistrictEventsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictEventsKeysTest() throws ApiException { + void getDistrictEventsKeysTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEventsKeys(districtKey, ifModifiedSince); @@ -81,7 +82,7 @@ public void getDistrictEventsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictEventsSimpleTest() throws ApiException { + void getDistrictEventsSimpleTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEventsSimple(districtKey, ifModifiedSince); @@ -98,7 +99,7 @@ public void getDistrictEventsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictRankingsTest() throws ApiException { + void getDistrictRankingsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictRankings(districtKey, ifModifiedSince); @@ -115,7 +116,7 @@ public void getDistrictRankingsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsTest() throws ApiException { + void getDistrictTeamsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeams(districtKey, ifModifiedSince); @@ -132,7 +133,7 @@ public void getDistrictTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsKeysTest() throws ApiException { + void getDistrictTeamsKeysTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeamsKeys(districtKey, ifModifiedSince); @@ -149,7 +150,7 @@ public void getDistrictTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsSimpleTest() throws ApiException { + void getDistrictTeamsSimpleTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeamsSimple(districtKey, ifModifiedSince); @@ -166,7 +167,7 @@ public void getDistrictTeamsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictsByYearTest() throws ApiException { + void getDistrictsByYearTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getDistrictsByYear(year, ifModifiedSince); @@ -183,7 +184,7 @@ public void getDistrictsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getEventDistrictPointsTest() throws ApiException { + void getEventDistrictPointsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventDistrictPoints response = api.getEventDistrictPoints(eventKey, ifModifiedSince); @@ -200,7 +201,7 @@ public void getEventDistrictPointsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamDistrictsTest() throws ApiException { + void getTeamDistrictsTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamDistricts(teamKey, ifModifiedSince); diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java index 5f546b0..184e727 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/EventApiTest.java @@ -28,8 +28,9 @@ import net.thefletcher.tbaapi.v3client.model.Team; import net.thefletcher.tbaapi.v3client.model.TeamEventStatus; import net.thefletcher.tbaapi.v3client.model.TeamSimple; -import org.junit.Test; -import org.junit.Ignore; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + import java.util.ArrayList; import java.util.HashMap; @@ -39,8 +40,8 @@ /** * API tests for EventApi */ -@Ignore -public class EventApiTest { +@Disabled +class EventApiTest { private final EventApi api = new EventApi(); @@ -54,7 +55,7 @@ public class EventApiTest { * if the Api call fails */ @Test - public void getDistrictEventsTest() throws ApiException { + void getDistrictEventsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEvents(districtKey, ifModifiedSince); @@ -71,7 +72,7 @@ public void getDistrictEventsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictEventsKeysTest() throws ApiException { + void getDistrictEventsKeysTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEventsKeys(districtKey, ifModifiedSince); @@ -88,7 +89,7 @@ public void getDistrictEventsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictEventsSimpleTest() throws ApiException { + void getDistrictEventsSimpleTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEventsSimple(districtKey, ifModifiedSince); @@ -105,7 +106,7 @@ public void getDistrictEventsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTest() throws ApiException { + void getEventTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; Event response = api.getEvent(eventKey, ifModifiedSince); @@ -122,7 +123,7 @@ public void getEventTest() throws ApiException { * if the Api call fails */ @Test - public void getEventAlliancesTest() throws ApiException { + void getEventAlliancesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventAlliances(eventKey, ifModifiedSince); @@ -139,7 +140,7 @@ public void getEventAlliancesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventAwardsTest() throws ApiException { + void getEventAwardsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventAwards(eventKey, ifModifiedSince); @@ -156,7 +157,7 @@ public void getEventAwardsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventDistrictPointsTest() throws ApiException { + void getEventDistrictPointsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventDistrictPoints response = api.getEventDistrictPoints(eventKey, ifModifiedSince); @@ -173,7 +174,7 @@ public void getEventDistrictPointsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventInsightsTest() throws ApiException { + void getEventInsightsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventInsights response = api.getEventInsights(eventKey, ifModifiedSince); @@ -190,7 +191,7 @@ public void getEventInsightsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchTimeseriesTest() throws ApiException { + void getEventMatchTimeseriesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatchTimeseries(eventKey, ifModifiedSince); @@ -207,7 +208,7 @@ public void getEventMatchTimeseriesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchesTest() throws ApiException { + void getEventMatchesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatches(eventKey, ifModifiedSince); @@ -224,7 +225,7 @@ public void getEventMatchesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchesKeysTest() throws ApiException { + void getEventMatchesKeysTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatchesKeys(eventKey, ifModifiedSince); @@ -241,7 +242,7 @@ public void getEventMatchesKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchesSimpleTest() throws ApiException { + void getEventMatchesSimpleTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatchesSimple(eventKey, ifModifiedSince); @@ -258,7 +259,7 @@ public void getEventMatchesSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventOPRsTest() throws ApiException { + void getEventOPRsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventOPRs response = api.getEventOPRs(eventKey, ifModifiedSince); @@ -275,7 +276,7 @@ public void getEventOPRsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventPredictionsTest() throws ApiException { + void getEventPredictionsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventPredictions response = (EventPredictions) api.getEventPredictions(eventKey, ifModifiedSince); @@ -292,7 +293,7 @@ public void getEventPredictionsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventRankingsTest() throws ApiException { + void getEventRankingsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventRanking response = api.getEventRankings(eventKey, ifModifiedSince); @@ -309,7 +310,7 @@ public void getEventRankingsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventSimpleTest() throws ApiException { + void getEventSimpleTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; EventSimple response = api.getEventSimple(eventKey, ifModifiedSince); @@ -326,7 +327,7 @@ public void getEventSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsTest() throws ApiException { + void getEventTeamsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeams(eventKey, ifModifiedSince); @@ -343,7 +344,7 @@ public void getEventTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsKeysTest() throws ApiException { + void getEventTeamsKeysTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeamsKeys(eventKey, ifModifiedSince); @@ -360,7 +361,7 @@ public void getEventTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsSimpleTest() throws ApiException { + void getEventTeamsSimpleTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeamsSimple(eventKey, ifModifiedSince); @@ -377,7 +378,7 @@ public void getEventTeamsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsStatusesTest() throws ApiException { + void getEventTeamsStatusesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; Map response = api.getEventTeamsStatuses(eventKey, ifModifiedSince); @@ -394,7 +395,7 @@ public void getEventTeamsStatusesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventsByYearTest() throws ApiException { + void getEventsByYearTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getEventsByYear(year, ifModifiedSince); @@ -411,7 +412,7 @@ public void getEventsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getEventsByYearKeysTest() throws ApiException { + void getEventsByYearKeysTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getEventsByYearKeys(year, ifModifiedSince); @@ -428,7 +429,7 @@ public void getEventsByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventsByYearSimpleTest() throws ApiException { + void getEventsByYearSimpleTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getEventsByYearSimple(year, ifModifiedSince); @@ -445,7 +446,7 @@ public void getEventsByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventAwardsTest() throws ApiException { + void getTeamEventAwardsTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -463,7 +464,7 @@ public void getTeamEventAwardsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesTest() throws ApiException { + void getTeamEventMatchesTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -481,7 +482,7 @@ public void getTeamEventMatchesTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesKeysTest() throws ApiException { + void getTeamEventMatchesKeysTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -499,7 +500,7 @@ public void getTeamEventMatchesKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesSimpleTest() throws ApiException { + void getTeamEventMatchesSimpleTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -517,7 +518,7 @@ public void getTeamEventMatchesSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventStatusTest() throws ApiException { + void getTeamEventStatusTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -535,7 +536,7 @@ public void getTeamEventStatusTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsTest() throws ApiException { + void getTeamEventsTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamEvents(teamKey, ifModifiedSince); @@ -552,7 +553,7 @@ public void getTeamEventsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsByYearTest() throws ApiException { + void getTeamEventsByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -570,7 +571,7 @@ public void getTeamEventsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsByYearKeysTest() throws ApiException { + void getTeamEventsByYearKeysTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -588,7 +589,7 @@ public void getTeamEventsByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsByYearSimpleTest() throws ApiException { + void getTeamEventsByYearSimpleTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -606,7 +607,7 @@ public void getTeamEventsByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsKeysTest() throws ApiException { + void getTeamEventsKeysTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamEventsKeys(teamKey, ifModifiedSince); @@ -623,7 +624,7 @@ public void getTeamEventsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsSimpleTest() throws ApiException { + void getTeamEventsSimpleTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamEventsSimple(teamKey, ifModifiedSince); @@ -640,7 +641,7 @@ public void getTeamEventsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsStatusesByYearTest() throws ApiException { + void getTeamEventsStatusesByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/ListApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/ListApiTest.java index c27eabd..e29a597 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/ListApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/ListApiTest.java @@ -20,8 +20,9 @@ import net.thefletcher.tbaapi.v3client.model.Team; import net.thefletcher.tbaapi.v3client.model.TeamEventStatus; import net.thefletcher.tbaapi.v3client.model.TeamSimple; -import org.junit.Test; -import org.junit.Ignore; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + import java.util.ArrayList; import java.util.HashMap; @@ -31,8 +32,8 @@ /** * API tests for ListApi */ -@Ignore -public class ListApiTest { +@Disabled +class ListApiTest { private final ListApi api = new ListApi(); @@ -46,7 +47,7 @@ public class ListApiTest { * if the Api call fails */ @Test - public void getDistrictEventsTest() throws ApiException { + void getDistrictEventsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEvents(districtKey, ifModifiedSince); @@ -63,7 +64,7 @@ public void getDistrictEventsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictEventsKeysTest() throws ApiException { + void getDistrictEventsKeysTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEventsKeys(districtKey, ifModifiedSince); @@ -80,7 +81,7 @@ public void getDistrictEventsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictEventsSimpleTest() throws ApiException { + void getDistrictEventsSimpleTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictEventsSimple(districtKey, ifModifiedSince); @@ -97,7 +98,7 @@ public void getDistrictEventsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictRankingsTest() throws ApiException { + void getDistrictRankingsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictRankings(districtKey, ifModifiedSince); @@ -114,7 +115,7 @@ public void getDistrictRankingsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsTest() throws ApiException { + void getDistrictTeamsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeams(districtKey, ifModifiedSince); @@ -131,7 +132,7 @@ public void getDistrictTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsKeysTest() throws ApiException { + void getDistrictTeamsKeysTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeamsKeys(districtKey, ifModifiedSince); @@ -148,7 +149,7 @@ public void getDistrictTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsSimpleTest() throws ApiException { + void getDistrictTeamsSimpleTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeamsSimple(districtKey, ifModifiedSince); @@ -165,7 +166,7 @@ public void getDistrictTeamsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsTest() throws ApiException { + void getEventTeamsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeams(eventKey, ifModifiedSince); @@ -182,7 +183,7 @@ public void getEventTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsKeysTest() throws ApiException { + void getEventTeamsKeysTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeamsKeys(eventKey, ifModifiedSince); @@ -199,7 +200,7 @@ public void getEventTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsSimpleTest() throws ApiException { + void getEventTeamsSimpleTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeamsSimple(eventKey, ifModifiedSince); @@ -216,7 +217,7 @@ public void getEventTeamsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsStatusesTest() throws ApiException { + void getEventTeamsStatusesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; Map response = api.getEventTeamsStatuses(eventKey, ifModifiedSince); @@ -233,7 +234,7 @@ public void getEventTeamsStatusesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventsByYearTest() throws ApiException { + void getEventsByYearTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getEventsByYear(year, ifModifiedSince); @@ -250,7 +251,7 @@ public void getEventsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getEventsByYearKeysTest() throws ApiException { + void getEventsByYearKeysTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getEventsByYearKeys(year, ifModifiedSince); @@ -267,7 +268,7 @@ public void getEventsByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventsByYearSimpleTest() throws ApiException { + void getEventsByYearSimpleTest() throws ApiException { Integer year = null; String ifModifiedSince = null; List response = api.getEventsByYearSimple(year, ifModifiedSince); @@ -284,7 +285,7 @@ public void getEventsByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsStatusesByYearTest() throws ApiException { + void getTeamEventsStatusesByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -302,7 +303,7 @@ public void getTeamEventsStatusesByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsTest() throws ApiException { + void getTeamsTest() throws ApiException { Integer pageNum = null; String ifModifiedSince = null; List response = api.getTeams(pageNum, ifModifiedSince); @@ -319,7 +320,7 @@ public void getTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsByYearTest() throws ApiException { + void getTeamsByYearTest() throws ApiException { Integer year = null; Integer pageNum = null; String ifModifiedSince = null; @@ -337,7 +338,7 @@ public void getTeamsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsByYearKeysTest() throws ApiException { + void getTeamsByYearKeysTest() throws ApiException { Integer year = null; Integer pageNum = null; String ifModifiedSince = null; @@ -355,7 +356,7 @@ public void getTeamsByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsByYearSimpleTest() throws ApiException { + void getTeamsByYearSimpleTest() throws ApiException { Integer year = null; Integer pageNum = null; String ifModifiedSince = null; @@ -373,7 +374,7 @@ public void getTeamsByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsKeysTest() throws ApiException { + void getTeamsKeysTest() throws ApiException { Integer pageNum = null; String ifModifiedSince = null; List response = api.getTeamsKeys(pageNum, ifModifiedSince); @@ -390,7 +391,7 @@ public void getTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsSimpleTest() throws ApiException { + void getTeamsSimpleTest() throws ApiException { Integer pageNum = null; String ifModifiedSince = null; List response = api.getTeamsSimple(pageNum, ifModifiedSince); diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/MatchApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/MatchApiTest.java index 852a6e5..9f2f44c 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/MatchApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/MatchApiTest.java @@ -16,8 +16,9 @@ import net.thefletcher.tbaapi.v3client.ApiException; import net.thefletcher.tbaapi.v3client.model.Match; import net.thefletcher.tbaapi.v3client.model.MatchSimple; -import org.junit.Test; -import org.junit.Ignore; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + import java.util.ArrayList; import java.util.HashMap; @@ -27,8 +28,8 @@ /** * API tests for MatchApi */ -@Ignore -public class MatchApiTest { +@Disabled +class MatchApiTest { private final MatchApi api = new MatchApi(); @@ -42,7 +43,7 @@ public class MatchApiTest { * if the Api call fails */ @Test - public void getEventMatchTimeseriesTest() throws ApiException { + void getEventMatchTimeseriesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatchTimeseries(eventKey, ifModifiedSince); @@ -59,7 +60,7 @@ public void getEventMatchTimeseriesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchesTest() throws ApiException { + void getEventMatchesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatches(eventKey, ifModifiedSince); @@ -76,7 +77,7 @@ public void getEventMatchesTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchesKeysTest() throws ApiException { + void getEventMatchesKeysTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatchesKeys(eventKey, ifModifiedSince); @@ -93,7 +94,7 @@ public void getEventMatchesKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventMatchesSimpleTest() throws ApiException { + void getEventMatchesSimpleTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventMatchesSimple(eventKey, ifModifiedSince); @@ -110,7 +111,7 @@ public void getEventMatchesSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getMatchTest() throws ApiException { + void getMatchTest() throws ApiException { String matchKey = null; String ifModifiedSince = null; Match response = api.getMatch(matchKey, ifModifiedSince); @@ -127,7 +128,7 @@ public void getMatchTest() throws ApiException { * if the Api call fails */ @Test - public void getMatchSimpleTest() throws ApiException { + void getMatchSimpleTest() throws ApiException { String matchKey = null; String ifModifiedSince = null; MatchSimple response = api.getMatchSimple(matchKey, ifModifiedSince); @@ -144,7 +145,7 @@ public void getMatchSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getMatchTimeseriesTest() throws ApiException { + void getMatchTimeseriesTest() throws ApiException { String matchKey = null; String ifModifiedSince = null; List response = api.getMatchTimeseries(matchKey, ifModifiedSince); @@ -161,7 +162,7 @@ public void getMatchTimeseriesTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesTest() throws ApiException { + void getTeamEventMatchesTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -179,7 +180,7 @@ public void getTeamEventMatchesTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesKeysTest() throws ApiException { + void getTeamEventMatchesKeysTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -197,7 +198,7 @@ public void getTeamEventMatchesKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesSimpleTest() throws ApiException { + void getTeamEventMatchesSimpleTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -215,7 +216,7 @@ public void getTeamEventMatchesSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMatchesByYearTest() throws ApiException { + void getTeamMatchesByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -233,7 +234,7 @@ public void getTeamMatchesByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMatchesByYearKeysTest() throws ApiException { + void getTeamMatchesByYearKeysTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -251,7 +252,7 @@ public void getTeamMatchesByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMatchesByYearSimpleTest() throws ApiException { + void getTeamMatchesByYearSimpleTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/TbaApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/TbaApiTest.java index 3f58713..a2a2cdc 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/TbaApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/TbaApiTest.java @@ -15,8 +15,9 @@ import net.thefletcher.tbaapi.v3client.ApiException; import net.thefletcher.tbaapi.v3client.model.APIStatus; -import org.junit.Test; -import org.junit.Ignore; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + import java.util.ArrayList; import java.util.HashMap; @@ -26,8 +27,8 @@ /** * API tests for TbaApi */ -@Ignore -public class TbaApiTest { +@Disabled +class TbaApiTest { private final TbaApi api = new TbaApi(); @@ -41,7 +42,7 @@ public class TbaApiTest { * if the Api call fails */ @Test - public void getStatusTest() throws ApiException { + void getStatusTest() throws ApiException { String ifModifiedSince = null; APIStatus response = api.getStatus(ifModifiedSince); diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/api/TeamApiTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/api/TeamApiTest.java index a76fecb..5559c3a 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/api/TeamApiTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/api/TeamApiTest.java @@ -26,8 +26,8 @@ import net.thefletcher.tbaapi.v3client.model.TeamEventStatus; import net.thefletcher.tbaapi.v3client.model.TeamRobot; import net.thefletcher.tbaapi.v3client.model.TeamSimple; -import org.junit.Test; -import org.junit.Ignore; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; import java.util.ArrayList; import java.util.HashMap; @@ -37,8 +37,8 @@ /** * API tests for TeamApi */ -@Ignore -public class TeamApiTest { +@Disabled +class TeamApiTest { private final TeamApi api = new TeamApi(); @@ -52,7 +52,7 @@ public class TeamApiTest { * if the Api call fails */ @Test - public void getDistrictRankingsTest() throws ApiException { + void getDistrictRankingsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictRankings(districtKey, ifModifiedSince); @@ -69,7 +69,7 @@ public void getDistrictRankingsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsTest() throws ApiException { + void getDistrictTeamsTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeams(districtKey, ifModifiedSince); @@ -86,7 +86,7 @@ public void getDistrictTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsKeysTest() throws ApiException { + void getDistrictTeamsKeysTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeamsKeys(districtKey, ifModifiedSince); @@ -103,7 +103,7 @@ public void getDistrictTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getDistrictTeamsSimpleTest() throws ApiException { + void getDistrictTeamsSimpleTest() throws ApiException { String districtKey = null; String ifModifiedSince = null; List response = api.getDistrictTeamsSimple(districtKey, ifModifiedSince); @@ -120,7 +120,7 @@ public void getDistrictTeamsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsTest() throws ApiException { + void getEventTeamsTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeams(eventKey, ifModifiedSince); @@ -137,7 +137,7 @@ public void getEventTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsKeysTest() throws ApiException { + void getEventTeamsKeysTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeamsKeys(eventKey, ifModifiedSince); @@ -154,7 +154,7 @@ public void getEventTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsSimpleTest() throws ApiException { + void getEventTeamsSimpleTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; List response = api.getEventTeamsSimple(eventKey, ifModifiedSince); @@ -171,7 +171,7 @@ public void getEventTeamsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getEventTeamsStatusesTest() throws ApiException { + void getEventTeamsStatusesTest() throws ApiException { String eventKey = null; String ifModifiedSince = null; Map response = api.getEventTeamsStatuses(eventKey, ifModifiedSince); @@ -188,7 +188,7 @@ public void getEventTeamsStatusesTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamTest() throws ApiException { + void getTeamTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; Team response = api.getTeam(teamKey, ifModifiedSince); @@ -205,7 +205,7 @@ public void getTeamTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamAwardsTest() throws ApiException { + void getTeamAwardsTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamAwards(teamKey, ifModifiedSince); @@ -222,7 +222,7 @@ public void getTeamAwardsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamAwardsByYearTest() throws ApiException { + void getTeamAwardsByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -240,7 +240,7 @@ public void getTeamAwardsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamDistrictsTest() throws ApiException { + void getTeamDistrictsTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamDistricts(teamKey, ifModifiedSince); @@ -257,7 +257,7 @@ public void getTeamDistrictsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventAwardsTest() throws ApiException { + void getTeamEventAwardsTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -275,7 +275,7 @@ public void getTeamEventAwardsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesTest() throws ApiException { + void getTeamEventMatchesTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -293,7 +293,7 @@ public void getTeamEventMatchesTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesKeysTest() throws ApiException { + void getTeamEventMatchesKeysTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -311,7 +311,7 @@ public void getTeamEventMatchesKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventMatchesSimpleTest() throws ApiException { + void getTeamEventMatchesSimpleTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -329,7 +329,7 @@ public void getTeamEventMatchesSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventStatusTest() throws ApiException { + void getTeamEventStatusTest() throws ApiException { String teamKey = null; String eventKey = null; String ifModifiedSince = null; @@ -347,7 +347,7 @@ public void getTeamEventStatusTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsTest() throws ApiException { + void getTeamEventsTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamEvents(teamKey, ifModifiedSince); @@ -364,7 +364,7 @@ public void getTeamEventsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsByYearTest() throws ApiException { + void getTeamEventsByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -382,7 +382,7 @@ public void getTeamEventsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsByYearKeysTest() throws ApiException { + void getTeamEventsByYearKeysTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -400,7 +400,7 @@ public void getTeamEventsByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsByYearSimpleTest() throws ApiException { + void getTeamEventsByYearSimpleTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -418,7 +418,7 @@ public void getTeamEventsByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsKeysTest() throws ApiException { + void getTeamEventsKeysTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamEventsKeys(teamKey, ifModifiedSince); @@ -435,7 +435,7 @@ public void getTeamEventsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsSimpleTest() throws ApiException { + void getTeamEventsSimpleTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamEventsSimple(teamKey, ifModifiedSince); @@ -452,7 +452,7 @@ public void getTeamEventsSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamEventsStatusesByYearTest() throws ApiException { + void getTeamEventsStatusesByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -470,7 +470,7 @@ public void getTeamEventsStatusesByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMatchesByYearTest() throws ApiException { + void getTeamMatchesByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -488,7 +488,7 @@ public void getTeamMatchesByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMatchesByYearKeysTest() throws ApiException { + void getTeamMatchesByYearKeysTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -506,7 +506,7 @@ public void getTeamMatchesByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMatchesByYearSimpleTest() throws ApiException { + void getTeamMatchesByYearSimpleTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -524,7 +524,7 @@ public void getTeamMatchesByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMediaByTagTest() throws ApiException { + void getTeamMediaByTagTest() throws ApiException { String teamKey = null; String mediaTag = null; String ifModifiedSince = null; @@ -542,7 +542,7 @@ public void getTeamMediaByTagTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMediaByTagYearTest() throws ApiException { + void getTeamMediaByTagYearTest() throws ApiException { String teamKey = null; String mediaTag = null; Integer year = null; @@ -561,7 +561,7 @@ public void getTeamMediaByTagYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamMediaByYearTest() throws ApiException { + void getTeamMediaByYearTest() throws ApiException { String teamKey = null; Integer year = null; String ifModifiedSince = null; @@ -579,7 +579,7 @@ public void getTeamMediaByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamRobotsTest() throws ApiException { + void getTeamRobotsTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamRobots(teamKey, ifModifiedSince); @@ -596,7 +596,7 @@ public void getTeamRobotsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamSimpleTest() throws ApiException { + void getTeamSimpleTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; TeamSimple response = api.getTeamSimple(teamKey, ifModifiedSince); @@ -613,7 +613,7 @@ public void getTeamSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamSocialMediaTest() throws ApiException { + void getTeamSocialMediaTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamSocialMedia(teamKey, ifModifiedSince); @@ -630,7 +630,7 @@ public void getTeamSocialMediaTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamYearsParticipatedTest() throws ApiException { + void getTeamYearsParticipatedTest() throws ApiException { String teamKey = null; String ifModifiedSince = null; List response = api.getTeamYearsParticipated(teamKey, ifModifiedSince); @@ -647,7 +647,7 @@ public void getTeamYearsParticipatedTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsTest() throws ApiException { + void getTeamsTest() throws ApiException { Integer pageNum = null; String ifModifiedSince = null; List response = api.getTeams(pageNum, ifModifiedSince); @@ -664,7 +664,7 @@ public void getTeamsTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsByYearTest() throws ApiException { + void getTeamsByYearTest() throws ApiException { Integer year = null; Integer pageNum = null; String ifModifiedSince = null; @@ -682,7 +682,7 @@ public void getTeamsByYearTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsByYearKeysTest() throws ApiException { + void getTeamsByYearKeysTest() throws ApiException { Integer year = null; Integer pageNum = null; String ifModifiedSince = null; @@ -700,7 +700,7 @@ public void getTeamsByYearKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsByYearSimpleTest() throws ApiException { + void getTeamsByYearSimpleTest() throws ApiException { Integer year = null; Integer pageNum = null; String ifModifiedSince = null; @@ -718,7 +718,7 @@ public void getTeamsByYearSimpleTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsKeysTest() throws ApiException { + void getTeamsKeysTest() throws ApiException { Integer pageNum = null; String ifModifiedSince = null; List response = api.getTeamsKeys(pageNum, ifModifiedSince); @@ -735,7 +735,7 @@ public void getTeamsKeysTest() throws ApiException { * if the Api call fails */ @Test - public void getTeamsSimpleTest() throws ApiException { + void getTeamsSimpleTest() throws ApiException { Integer pageNum = null; String ifModifiedSince = null; List response = api.getTeamsSimple(pageNum, ifModifiedSince); diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusAppVersionTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusAppVersionTest.java index a0fe65a..8fff792 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusAppVersionTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusAppVersionTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for APIStatusAppVersion */ -public class APIStatusAppVersionTest { +class APIStatusAppVersionTest { private final APIStatusAppVersion model = new APIStatusAppVersion(); /** * Model tests for APIStatusAppVersion */ @Test - public void testAPIStatusAppVersion() { + void testAPIStatusAppVersion() { // TODO: test APIStatusAppVersion } @@ -44,7 +44,7 @@ public void testAPIStatusAppVersion() { * Test the property 'minAppVersion' */ @Test - public void minAppVersionTest() { + void minAppVersionTest() { // TODO: test minAppVersion } @@ -52,7 +52,7 @@ public void minAppVersionTest() { * Test the property 'latestAppVersion' */ @Test - public void latestAppVersionTest() { + void latestAppVersionTest() { // TODO: test latestAppVersion } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusTest.java index 621d3b0..383f216 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/APIStatusTest.java @@ -24,22 +24,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.APIStatusAppVersion; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for APIStatus */ -public class APIStatusTest { +class APIStatusTest { private final APIStatus model = new APIStatus(); /** * Model tests for APIStatus */ @Test - public void testAPIStatus() { + void testAPIStatus() { // TODO: test APIStatus } @@ -47,7 +47,7 @@ public void testAPIStatus() { * Test the property 'currentSeason' */ @Test - public void currentSeasonTest() { + void currentSeasonTest() { // TODO: test currentSeason } @@ -55,7 +55,7 @@ public void currentSeasonTest() { * Test the property 'maxSeason' */ @Test - public void maxSeasonTest() { + void maxSeasonTest() { // TODO: test maxSeason } @@ -63,7 +63,7 @@ public void maxSeasonTest() { * Test the property 'isDatafeedDown' */ @Test - public void isDatafeedDownTest() { + void isDatafeedDownTest() { // TODO: test isDatafeedDown } @@ -71,7 +71,7 @@ public void isDatafeedDownTest() { * Test the property 'downEvents' */ @Test - public void downEventsTest() { + void downEventsTest() { // TODO: test downEvents } @@ -79,7 +79,7 @@ public void downEventsTest() { * Test the property 'ios' */ @Test - public void iosTest() { + void iosTest() { // TODO: test ios } @@ -87,7 +87,7 @@ public void iosTest() { * Test the property 'android' */ @Test - public void androidTest() { + void androidTest() { // TODO: test android } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardRecipientTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardRecipientTest.java index adbd5c2..b0024c7 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardRecipientTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardRecipientTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for AwardRecipient */ -public class AwardRecipientTest { +class AwardRecipientTest { private final AwardRecipient model = new AwardRecipient(); /** * Model tests for AwardRecipient */ @Test - public void testAwardRecipient() { + void testAwardRecipient() { // TODO: test AwardRecipient } @@ -44,7 +44,7 @@ public void testAwardRecipient() { * Test the property 'teamKey' */ @Test - public void teamKeyTest() { + void teamKeyTest() { // TODO: test teamKey } @@ -52,7 +52,7 @@ public void teamKeyTest() { * Test the property 'awardee' */ @Test - public void awardeeTest() { + void awardeeTest() { // TODO: test awardee } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardTest.java index 61e647e..ece4a63 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/AwardTest.java @@ -24,22 +24,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.AwardRecipient; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Award */ -public class AwardTest { +class AwardTest { private final Award model = new Award(); /** * Model tests for Award */ @Test - public void testAward() { + void testAward() { // TODO: test Award } @@ -47,7 +47,7 @@ public void testAward() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -55,7 +55,7 @@ public void nameTest() { * Test the property 'awardType' */ @Test - public void awardTypeTest() { + void awardTypeTest() { // TODO: test awardType } @@ -63,7 +63,7 @@ public void awardTypeTest() { * Test the property 'eventKey' */ @Test - public void eventKeyTest() { + void eventKeyTest() { // TODO: test eventKey } @@ -71,7 +71,7 @@ public void eventKeyTest() { * Test the property 'recipientList' */ @Test - public void recipientListTest() { + void recipientListTest() { // TODO: test recipientList } @@ -79,7 +79,7 @@ public void recipientListTest() { * Test the property 'year' */ @Test - public void yearTest() { + void yearTest() { // TODO: test year } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictListTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictListTest.java index b0c47ee..6c6a2fa 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictListTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictListTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for DistrictList */ -public class DistrictListTest { +class DistrictListTest { private final DistrictList model = new DistrictList(); /** * Model tests for DistrictList */ @Test - public void testDistrictList() { + void testDistrictList() { // TODO: test DistrictList } @@ -44,7 +44,7 @@ public void testDistrictList() { * Test the property 'abbreviation' */ @Test - public void abbreviationTest() { + void abbreviationTest() { // TODO: test abbreviation } @@ -52,7 +52,7 @@ public void abbreviationTest() { * Test the property 'displayName' */ @Test - public void displayNameTest() { + void displayNameTest() { // TODO: test displayName } @@ -60,7 +60,7 @@ public void displayNameTest() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -68,7 +68,7 @@ public void keyTest() { * Test the property 'year' */ @Test - public void yearTest() { + void yearTest() { // TODO: test year } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingEventPointsTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingEventPointsTest.java index e20e796..3b8b365 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingEventPointsTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingEventPointsTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for DistrictRankingEventPoints */ -public class DistrictRankingEventPointsTest { +class DistrictRankingEventPointsTest { private final DistrictRankingEventPoints model = new DistrictRankingEventPoints(); /** * Model tests for DistrictRankingEventPoints */ @Test - public void testDistrictRankingEventPoints() { + void testDistrictRankingEventPoints() { // TODO: test DistrictRankingEventPoints } @@ -44,7 +44,7 @@ public void testDistrictRankingEventPoints() { * Test the property 'districtCmp' */ @Test - public void districtCmpTest() { + void districtCmpTest() { // TODO: test districtCmp } @@ -52,7 +52,7 @@ public void districtCmpTest() { * Test the property 'total' */ @Test - public void totalTest() { + void totalTest() { // TODO: test total } @@ -60,7 +60,7 @@ public void totalTest() { * Test the property 'alliancePoints' */ @Test - public void alliancePointsTest() { + void alliancePointsTest() { // TODO: test alliancePoints } @@ -68,7 +68,7 @@ public void alliancePointsTest() { * Test the property 'elimPoints' */ @Test - public void elimPointsTest() { + void elimPointsTest() { // TODO: test elimPoints } @@ -76,7 +76,7 @@ public void elimPointsTest() { * Test the property 'awardPoints' */ @Test - public void awardPointsTest() { + void awardPointsTest() { // TODO: test awardPoints } @@ -84,7 +84,7 @@ public void awardPointsTest() { * Test the property 'eventKey' */ @Test - public void eventKeyTest() { + void eventKeyTest() { // TODO: test eventKey } @@ -92,7 +92,7 @@ public void eventKeyTest() { * Test the property 'qualPoints' */ @Test - public void qualPointsTest() { + void qualPointsTest() { // TODO: test qualPoints } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingTest.java index 6c2d9bb..04faca2 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/DistrictRankingTest.java @@ -24,22 +24,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.DistrictRankingEventPoints; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for DistrictRanking */ -public class DistrictRankingTest { +class DistrictRankingTest { private final DistrictRanking model = new DistrictRanking(); /** * Model tests for DistrictRanking */ @Test - public void testDistrictRanking() { + void testDistrictRanking() { // TODO: test DistrictRanking } @@ -47,7 +47,7 @@ public void testDistrictRanking() { * Test the property 'teamKey' */ @Test - public void teamKeyTest() { + void teamKeyTest() { // TODO: test teamKey } @@ -55,7 +55,7 @@ public void teamKeyTest() { * Test the property 'rank' */ @Test - public void rankTest() { + void rankTest() { // TODO: test rank } @@ -63,7 +63,7 @@ public void rankTest() { * Test the property 'rookieBonus' */ @Test - public void rookieBonusTest() { + void rookieBonusTest() { // TODO: test rookieBonus } @@ -71,7 +71,7 @@ public void rookieBonusTest() { * Test the property 'pointTotal' */ @Test - public void pointTotalTest() { + void pointTotalTest() { // TODO: test pointTotal } @@ -79,7 +79,7 @@ public void pointTotalTest() { * Test the property 'eventPoints' */ @Test - public void eventPointsTest() { + void eventPointsTest() { // TODO: test eventPoints } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceBackupTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceBackupTest.java index 71cdb57..4b0e6c6 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceBackupTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceBackupTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EliminationAllianceBackup */ -public class EliminationAllianceBackupTest { +class EliminationAllianceBackupTest { private final EliminationAllianceBackup model = new EliminationAllianceBackup(); /** * Model tests for EliminationAllianceBackup */ @Test - public void testEliminationAllianceBackup() { + void testEliminationAllianceBackup() { // TODO: test EliminationAllianceBackup } @@ -44,7 +44,7 @@ public void testEliminationAllianceBackup() { * Test the property 'in' */ @Test - public void inTest() { + void inTest() { // TODO: test in } @@ -52,7 +52,7 @@ public void inTest() { * Test the property 'out' */ @Test - public void outTest() { + void outTest() { // TODO: test out } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceStatusTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceStatusTest.java index b678d47..487b2db 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceStatusTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceStatusTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.WLTRecord; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EliminationAllianceStatus */ -public class EliminationAllianceStatusTest { +class EliminationAllianceStatusTest { private final EliminationAllianceStatus model = new EliminationAllianceStatus(); /** * Model tests for EliminationAllianceStatus */ @Test - public void testEliminationAllianceStatus() { + void testEliminationAllianceStatus() { // TODO: test EliminationAllianceStatus } @@ -45,7 +45,7 @@ public void testEliminationAllianceStatus() { * Test the property 'playoffAverage' */ @Test - public void playoffAverageTest() { + void playoffAverageTest() { // TODO: test playoffAverage } @@ -53,7 +53,7 @@ public void playoffAverageTest() { * Test the property 'level' */ @Test - public void levelTest() { + void levelTest() { // TODO: test level } @@ -61,7 +61,7 @@ public void levelTest() { * Test the property 'record' */ @Test - public void recordTest() { + void recordTest() { // TODO: test record } @@ -69,7 +69,7 @@ public void recordTest() { * Test the property 'currentLevelRecord' */ @Test - public void currentLevelRecordTest() { + void currentLevelRecordTest() { // TODO: test currentLevelRecord } @@ -77,7 +77,7 @@ public void currentLevelRecordTest() { * Test the property 'status' */ @Test - public void statusTest() { + void statusTest() { // TODO: test status } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceTest.java index af81c8e..65ecbaf 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EliminationAllianceTest.java @@ -25,22 +25,22 @@ import java.util.List; import net.thefletcher.tbaapi.v3client.model.EliminationAllianceBackup; import net.thefletcher.tbaapi.v3client.model.EliminationAllianceStatus; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EliminationAlliance */ -public class EliminationAllianceTest { +class EliminationAllianceTest { private final EliminationAlliance model = new EliminationAlliance(); /** * Model tests for EliminationAlliance */ @Test - public void testEliminationAlliance() { + void testEliminationAlliance() { // TODO: test EliminationAlliance } @@ -48,7 +48,7 @@ public void testEliminationAlliance() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -56,7 +56,7 @@ public void nameTest() { * Test the property 'backup' */ @Test - public void backupTest() { + void backupTest() { // TODO: test backup } @@ -64,7 +64,7 @@ public void backupTest() { * Test the property 'declines' */ @Test - public void declinesTest() { + void declinesTest() { // TODO: test declines } @@ -72,7 +72,7 @@ public void declinesTest() { * Test the property 'picks' */ @Test - public void picksTest() { + void picksTest() { // TODO: test picks } @@ -80,7 +80,7 @@ public void picksTest() { * Test the property 'status' */ @Test - public void statusTest() { + void statusTest() { // TODO: test status } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsPointsTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsPointsTest.java index 94f60f7..b30e457 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsPointsTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsPointsTest.java @@ -21,22 +21,20 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; +import org.junit.jupiter.api.Test; /** * Model tests for EventDistrictPointsPoints */ -public class EventDistrictPointsPointsTest { +class EventDistrictPointsPointsTest { private final EventDistrictPointsPoints model = new EventDistrictPointsPoints(); /** * Model tests for EventDistrictPointsPoints */ @Test - public void testEventDistrictPointsPoints() { + void testEventDistrictPointsPoints() { // TODO: test EventDistrictPointsPoints } @@ -44,7 +42,7 @@ public void testEventDistrictPointsPoints() { * Test the property 'total' */ @Test - public void totalTest() { + void totalTest() { // TODO: test total } @@ -52,7 +50,7 @@ public void totalTest() { * Test the property 'alliancePoints' */ @Test - public void alliancePointsTest() { + void alliancePointsTest() { // TODO: test alliancePoints } @@ -60,7 +58,7 @@ public void alliancePointsTest() { * Test the property 'elimPoints' */ @Test - public void elimPointsTest() { + void elimPointsTest() { // TODO: test elimPoints } @@ -68,7 +66,7 @@ public void elimPointsTest() { * Test the property 'awardPoints' */ @Test - public void awardPointsTest() { + void awardPointsTest() { // TODO: test awardPoints } @@ -76,7 +74,7 @@ public void awardPointsTest() { * Test the property 'qualPoints' */ @Test - public void qualPointsTest() { + void qualPointsTest() { // TODO: test qualPoints } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTest.java index 9e40d1a..af09564 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTest.java @@ -26,22 +26,22 @@ import java.util.Map; import net.thefletcher.tbaapi.v3client.model.EventDistrictPointsPoints; import net.thefletcher.tbaapi.v3client.model.EventDistrictPointsTiebreakers; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventDistrictPoints */ -public class EventDistrictPointsTest { +class EventDistrictPointsTest { private final EventDistrictPoints model = new EventDistrictPoints(); /** * Model tests for EventDistrictPoints */ @Test - public void testEventDistrictPoints() { + void testEventDistrictPoints() { // TODO: test EventDistrictPoints } @@ -49,7 +49,7 @@ public void testEventDistrictPoints() { * Test the property 'points' */ @Test - public void pointsTest() { + void pointsTest() { // TODO: test points } @@ -57,7 +57,7 @@ public void pointsTest() { * Test the property 'tiebreakers' */ @Test - public void tiebreakersTest() { + void tiebreakersTest() { // TODO: test tiebreakers } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTiebreakersTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTiebreakersTest.java index f670315..3c1a53e 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTiebreakersTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventDistrictPointsTiebreakersTest.java @@ -23,22 +23,22 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventDistrictPointsTiebreakers */ -public class EventDistrictPointsTiebreakersTest { +class EventDistrictPointsTiebreakersTest { private final EventDistrictPointsTiebreakers model = new EventDistrictPointsTiebreakers(); /** * Model tests for EventDistrictPointsTiebreakers */ @Test - public void testEventDistrictPointsTiebreakers() { + void testEventDistrictPointsTiebreakers() { // TODO: test EventDistrictPointsTiebreakers } @@ -46,7 +46,7 @@ public void testEventDistrictPointsTiebreakers() { * Test the property 'highestQualScores' */ @Test - public void highestQualScoresTest() { + void highestQualScoresTest() { // TODO: test highestQualScores } @@ -54,7 +54,7 @@ public void highestQualScoresTest() { * Test the property 'qualWins' */ @Test - public void qualWinsTest() { + void qualWinsTest() { // TODO: test qualWins } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2016Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2016Test.java index 2e7ff11..3a765c5 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2016Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2016Test.java @@ -23,22 +23,22 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventInsights2016 */ -public class EventInsights2016Test { +class EventInsights2016Test { private final EventInsights2016 model = new EventInsights2016(); /** * Model tests for EventInsights2016 */ @Test - public void testEventInsights2016() { + void testEventInsights2016() { // TODO: test EventInsights2016 } @@ -46,7 +46,7 @@ public void testEventInsights2016() { * Test the property 'lowBar' */ @Test - public void lowBarTest() { + void lowBarTest() { // TODO: test lowBar } @@ -54,7 +54,7 @@ public void lowBarTest() { * Test the property 'aChevalDeFrise' */ @Test - public void aChevalDeFriseTest() { + void aChevalDeFriseTest() { // TODO: test aChevalDeFrise } @@ -62,7 +62,7 @@ public void aChevalDeFriseTest() { * Test the property 'aPortcullis' */ @Test - public void aPortcullisTest() { + void aPortcullisTest() { // TODO: test aPortcullis } @@ -70,7 +70,7 @@ public void aPortcullisTest() { * Test the property 'bRamparts' */ @Test - public void bRampartsTest() { + void bRampartsTest() { // TODO: test bRamparts } @@ -78,7 +78,7 @@ public void bRampartsTest() { * Test the property 'bMoat' */ @Test - public void bMoatTest() { + void bMoatTest() { // TODO: test bMoat } @@ -86,7 +86,7 @@ public void bMoatTest() { * Test the property 'cSallyPort' */ @Test - public void cSallyPortTest() { + void cSallyPortTest() { // TODO: test cSallyPort } @@ -94,7 +94,7 @@ public void cSallyPortTest() { * Test the property 'cDrawbridge' */ @Test - public void cDrawbridgeTest() { + void cDrawbridgeTest() { // TODO: test cDrawbridge } @@ -102,7 +102,7 @@ public void cDrawbridgeTest() { * Test the property 'dRoughTerrain' */ @Test - public void dRoughTerrainTest() { + void dRoughTerrainTest() { // TODO: test dRoughTerrain } @@ -110,7 +110,7 @@ public void dRoughTerrainTest() { * Test the property 'dRockWall' */ @Test - public void dRockWallTest() { + void dRockWallTest() { // TODO: test dRockWall } @@ -118,7 +118,7 @@ public void dRockWallTest() { * Test the property 'averageHighGoals' */ @Test - public void averageHighGoalsTest() { + void averageHighGoalsTest() { // TODO: test averageHighGoals } @@ -126,7 +126,7 @@ public void averageHighGoalsTest() { * Test the property 'averageLowGoals' */ @Test - public void averageLowGoalsTest() { + void averageLowGoalsTest() { // TODO: test averageLowGoals } @@ -134,7 +134,7 @@ public void averageLowGoalsTest() { * Test the property 'breaches' */ @Test - public void breachesTest() { + void breachesTest() { // TODO: test breaches } @@ -142,7 +142,7 @@ public void breachesTest() { * Test the property 'scales' */ @Test - public void scalesTest() { + void scalesTest() { // TODO: test scales } @@ -150,7 +150,7 @@ public void scalesTest() { * Test the property 'challenges' */ @Test - public void challengesTest() { + void challengesTest() { // TODO: test challenges } @@ -158,7 +158,7 @@ public void challengesTest() { * Test the property 'captures' */ @Test - public void capturesTest() { + void capturesTest() { // TODO: test captures } @@ -166,7 +166,7 @@ public void capturesTest() { * Test the property 'averageWinScore' */ @Test - public void averageWinScoreTest() { + void averageWinScoreTest() { // TODO: test averageWinScore } @@ -174,7 +174,7 @@ public void averageWinScoreTest() { * Test the property 'averageWinMargin' */ @Test - public void averageWinMarginTest() { + void averageWinMarginTest() { // TODO: test averageWinMargin } @@ -182,7 +182,7 @@ public void averageWinMarginTest() { * Test the property 'averageScore' */ @Test - public void averageScoreTest() { + void averageScoreTest() { // TODO: test averageScore } @@ -190,7 +190,7 @@ public void averageScoreTest() { * Test the property 'averageAutoScore' */ @Test - public void averageAutoScoreTest() { + void averageAutoScoreTest() { // TODO: test averageAutoScore } @@ -198,7 +198,7 @@ public void averageAutoScoreTest() { * Test the property 'averageCrossingScore' */ @Test - public void averageCrossingScoreTest() { + void averageCrossingScoreTest() { // TODO: test averageCrossingScore } @@ -206,7 +206,7 @@ public void averageCrossingScoreTest() { * Test the property 'averageBoulderScore' */ @Test - public void averageBoulderScoreTest() { + void averageBoulderScoreTest() { // TODO: test averageBoulderScore } @@ -214,7 +214,7 @@ public void averageBoulderScoreTest() { * Test the property 'averageTowerScore' */ @Test - public void averageTowerScoreTest() { + void averageTowerScoreTest() { // TODO: test averageTowerScore } @@ -222,7 +222,7 @@ public void averageTowerScoreTest() { * Test the property 'averageFoulScore' */ @Test - public void averageFoulScoreTest() { + void averageFoulScoreTest() { // TODO: test averageFoulScore } @@ -230,7 +230,7 @@ public void averageFoulScoreTest() { * Test the property 'highScore' */ @Test - public void highScoreTest() { + void highScoreTest() { // TODO: test highScore } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2017Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2017Test.java index 7f59489..5ee7cc0 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2017Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2017Test.java @@ -23,22 +23,22 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventInsights2017 */ -public class EventInsights2017Test { +class EventInsights2017Test { private final EventInsights2017 model = new EventInsights2017(); /** * Model tests for EventInsights2017 */ @Test - public void testEventInsights2017() { + void testEventInsights2017() { // TODO: test EventInsights2017 } @@ -46,7 +46,7 @@ public void testEventInsights2017() { * Test the property 'averageFoulScore' */ @Test - public void averageFoulScoreTest() { + void averageFoulScoreTest() { // TODO: test averageFoulScore } @@ -54,7 +54,7 @@ public void averageFoulScoreTest() { * Test the property 'averageFuelPoints' */ @Test - public void averageFuelPointsTest() { + void averageFuelPointsTest() { // TODO: test averageFuelPoints } @@ -62,7 +62,7 @@ public void averageFuelPointsTest() { * Test the property 'averageFuelPointsAuto' */ @Test - public void averageFuelPointsAutoTest() { + void averageFuelPointsAutoTest() { // TODO: test averageFuelPointsAuto } @@ -70,7 +70,7 @@ public void averageFuelPointsAutoTest() { * Test the property 'averageFuelPointsTeleop' */ @Test - public void averageFuelPointsTeleopTest() { + void averageFuelPointsTeleopTest() { // TODO: test averageFuelPointsTeleop } @@ -78,7 +78,7 @@ public void averageFuelPointsTeleopTest() { * Test the property 'averageHighGoals' */ @Test - public void averageHighGoalsTest() { + void averageHighGoalsTest() { // TODO: test averageHighGoals } @@ -86,7 +86,7 @@ public void averageHighGoalsTest() { * Test the property 'averageHighGoalsAuto' */ @Test - public void averageHighGoalsAutoTest() { + void averageHighGoalsAutoTest() { // TODO: test averageHighGoalsAuto } @@ -94,7 +94,7 @@ public void averageHighGoalsAutoTest() { * Test the property 'averageHighGoalsTeleop' */ @Test - public void averageHighGoalsTeleopTest() { + void averageHighGoalsTeleopTest() { // TODO: test averageHighGoalsTeleop } @@ -102,7 +102,7 @@ public void averageHighGoalsTeleopTest() { * Test the property 'averageLowGoals' */ @Test - public void averageLowGoalsTest() { + void averageLowGoalsTest() { // TODO: test averageLowGoals } @@ -110,7 +110,7 @@ public void averageLowGoalsTest() { * Test the property 'averageLowGoalsAuto' */ @Test - public void averageLowGoalsAutoTest() { + void averageLowGoalsAutoTest() { // TODO: test averageLowGoalsAuto } @@ -118,7 +118,7 @@ public void averageLowGoalsAutoTest() { * Test the property 'averageLowGoalsTeleop' */ @Test - public void averageLowGoalsTeleopTest() { + void averageLowGoalsTeleopTest() { // TODO: test averageLowGoalsTeleop } @@ -126,7 +126,7 @@ public void averageLowGoalsTeleopTest() { * Test the property 'averageMobilityPointsAuto' */ @Test - public void averageMobilityPointsAutoTest() { + void averageMobilityPointsAutoTest() { // TODO: test averageMobilityPointsAuto } @@ -134,7 +134,7 @@ public void averageMobilityPointsAutoTest() { * Test the property 'averagePointsAuto' */ @Test - public void averagePointsAutoTest() { + void averagePointsAutoTest() { // TODO: test averagePointsAuto } @@ -142,7 +142,7 @@ public void averagePointsAutoTest() { * Test the property 'averagePointsTeleop' */ @Test - public void averagePointsTeleopTest() { + void averagePointsTeleopTest() { // TODO: test averagePointsTeleop } @@ -150,7 +150,7 @@ public void averagePointsTeleopTest() { * Test the property 'averageRotorPoints' */ @Test - public void averageRotorPointsTest() { + void averageRotorPointsTest() { // TODO: test averageRotorPoints } @@ -158,7 +158,7 @@ public void averageRotorPointsTest() { * Test the property 'averageRotorPointsAuto' */ @Test - public void averageRotorPointsAutoTest() { + void averageRotorPointsAutoTest() { // TODO: test averageRotorPointsAuto } @@ -166,7 +166,7 @@ public void averageRotorPointsAutoTest() { * Test the property 'averageRotorPointsTeleop' */ @Test - public void averageRotorPointsTeleopTest() { + void averageRotorPointsTeleopTest() { // TODO: test averageRotorPointsTeleop } @@ -174,7 +174,7 @@ public void averageRotorPointsTeleopTest() { * Test the property 'averageScore' */ @Test - public void averageScoreTest() { + void averageScoreTest() { // TODO: test averageScore } @@ -182,7 +182,7 @@ public void averageScoreTest() { * Test the property 'averageTakeoffPointsTeleop' */ @Test - public void averageTakeoffPointsTeleopTest() { + void averageTakeoffPointsTeleopTest() { // TODO: test averageTakeoffPointsTeleop } @@ -190,7 +190,7 @@ public void averageTakeoffPointsTeleopTest() { * Test the property 'averageWinMargin' */ @Test - public void averageWinMarginTest() { + void averageWinMarginTest() { // TODO: test averageWinMargin } @@ -198,7 +198,7 @@ public void averageWinMarginTest() { * Test the property 'averageWinScore' */ @Test - public void averageWinScoreTest() { + void averageWinScoreTest() { // TODO: test averageWinScore } @@ -206,7 +206,7 @@ public void averageWinScoreTest() { * Test the property 'highKpa' */ @Test - public void highKpaTest() { + void highKpaTest() { // TODO: test highKpa } @@ -214,7 +214,7 @@ public void highKpaTest() { * Test the property 'highScore' */ @Test - public void highScoreTest() { + void highScoreTest() { // TODO: test highScore } @@ -222,7 +222,7 @@ public void highScoreTest() { * Test the property 'kpaAchieved' */ @Test - public void kpaAchievedTest() { + void kpaAchievedTest() { // TODO: test kpaAchieved } @@ -230,7 +230,7 @@ public void kpaAchievedTest() { * Test the property 'mobilityCounts' */ @Test - public void mobilityCountsTest() { + void mobilityCountsTest() { // TODO: test mobilityCounts } @@ -238,7 +238,7 @@ public void mobilityCountsTest() { * Test the property 'rotor1Engaged' */ @Test - public void rotor1EngagedTest() { + void rotor1EngagedTest() { // TODO: test rotor1Engaged } @@ -246,7 +246,7 @@ public void rotor1EngagedTest() { * Test the property 'rotor1EngagedAuto' */ @Test - public void rotor1EngagedAutoTest() { + void rotor1EngagedAutoTest() { // TODO: test rotor1EngagedAuto } @@ -254,7 +254,7 @@ public void rotor1EngagedAutoTest() { * Test the property 'rotor2Engaged' */ @Test - public void rotor2EngagedTest() { + void rotor2EngagedTest() { // TODO: test rotor2Engaged } @@ -262,7 +262,7 @@ public void rotor2EngagedTest() { * Test the property 'rotor2EngagedAuto' */ @Test - public void rotor2EngagedAutoTest() { + void rotor2EngagedAutoTest() { // TODO: test rotor2EngagedAuto } @@ -270,7 +270,7 @@ public void rotor2EngagedAutoTest() { * Test the property 'rotor3Engaged' */ @Test - public void rotor3EngagedTest() { + void rotor3EngagedTest() { // TODO: test rotor3Engaged } @@ -278,7 +278,7 @@ public void rotor3EngagedTest() { * Test the property 'rotor4Engaged' */ @Test - public void rotor4EngagedTest() { + void rotor4EngagedTest() { // TODO: test rotor4Engaged } @@ -286,7 +286,7 @@ public void rotor4EngagedTest() { * Test the property 'takeoffCounts' */ @Test - public void takeoffCountsTest() { + void takeoffCountsTest() { // TODO: test takeoffCounts } @@ -294,7 +294,7 @@ public void takeoffCountsTest() { * Test the property 'unicornMatches' */ @Test - public void unicornMatchesTest() { + void unicornMatchesTest() { // TODO: test unicornMatches } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2018Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2018Test.java index 21ba060..b42f722 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2018Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsights2018Test.java @@ -23,22 +23,22 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventInsights2018 */ -public class EventInsights2018Test { +class EventInsights2018Test { private final EventInsights2018 model = new EventInsights2018(); /** * Model tests for EventInsights2018 */ @Test - public void testEventInsights2018() { + void testEventInsights2018() { // TODO: test EventInsights2018 } @@ -46,7 +46,7 @@ public void testEventInsights2018() { * Test the property 'autoQuestAchieved' */ @Test - public void autoQuestAchievedTest() { + void autoQuestAchievedTest() { // TODO: test autoQuestAchieved } @@ -54,7 +54,7 @@ public void autoQuestAchievedTest() { * Test the property 'averageBoostPlayed' */ @Test - public void averageBoostPlayedTest() { + void averageBoostPlayedTest() { // TODO: test averageBoostPlayed } @@ -62,7 +62,7 @@ public void averageBoostPlayedTest() { * Test the property 'averageEndgamePoints' */ @Test - public void averageEndgamePointsTest() { + void averageEndgamePointsTest() { // TODO: test averageEndgamePoints } @@ -70,7 +70,7 @@ public void averageEndgamePointsTest() { * Test the property 'averageForcePlayed' */ @Test - public void averageForcePlayedTest() { + void averageForcePlayedTest() { // TODO: test averageForcePlayed } @@ -78,7 +78,7 @@ public void averageForcePlayedTest() { * Test the property 'averageFoulScore' */ @Test - public void averageFoulScoreTest() { + void averageFoulScoreTest() { // TODO: test averageFoulScore } @@ -86,7 +86,7 @@ public void averageFoulScoreTest() { * Test the property 'averagePointsAuto' */ @Test - public void averagePointsAutoTest() { + void averagePointsAutoTest() { // TODO: test averagePointsAuto } @@ -94,7 +94,7 @@ public void averagePointsAutoTest() { * Test the property 'averagePointsTeleop' */ @Test - public void averagePointsTeleopTest() { + void averagePointsTeleopTest() { // TODO: test averagePointsTeleop } @@ -102,7 +102,7 @@ public void averagePointsTeleopTest() { * Test the property 'averageRunPointsAuto' */ @Test - public void averageRunPointsAutoTest() { + void averageRunPointsAutoTest() { // TODO: test averageRunPointsAuto } @@ -110,7 +110,7 @@ public void averageRunPointsAutoTest() { * Test the property 'averageScaleOwnershipPoints' */ @Test - public void averageScaleOwnershipPointsTest() { + void averageScaleOwnershipPointsTest() { // TODO: test averageScaleOwnershipPoints } @@ -118,7 +118,7 @@ public void averageScaleOwnershipPointsTest() { * Test the property 'averageScaleOwnershipPointsAuto' */ @Test - public void averageScaleOwnershipPointsAutoTest() { + void averageScaleOwnershipPointsAutoTest() { // TODO: test averageScaleOwnershipPointsAuto } @@ -126,7 +126,7 @@ public void averageScaleOwnershipPointsAutoTest() { * Test the property 'averageScaleOwnershipPointsTeleop' */ @Test - public void averageScaleOwnershipPointsTeleopTest() { + void averageScaleOwnershipPointsTeleopTest() { // TODO: test averageScaleOwnershipPointsTeleop } @@ -134,7 +134,7 @@ public void averageScaleOwnershipPointsTeleopTest() { * Test the property 'averageScore' */ @Test - public void averageScoreTest() { + void averageScoreTest() { // TODO: test averageScore } @@ -142,7 +142,7 @@ public void averageScoreTest() { * Test the property 'averageSwitchOwnershipPoints' */ @Test - public void averageSwitchOwnershipPointsTest() { + void averageSwitchOwnershipPointsTest() { // TODO: test averageSwitchOwnershipPoints } @@ -150,7 +150,7 @@ public void averageSwitchOwnershipPointsTest() { * Test the property 'averageSwitchOwnershipPointsAuto' */ @Test - public void averageSwitchOwnershipPointsAutoTest() { + void averageSwitchOwnershipPointsAutoTest() { // TODO: test averageSwitchOwnershipPointsAuto } @@ -158,7 +158,7 @@ public void averageSwitchOwnershipPointsAutoTest() { * Test the property 'averageSwitchOwnershipPointsTeleop' */ @Test - public void averageSwitchOwnershipPointsTeleopTest() { + void averageSwitchOwnershipPointsTeleopTest() { // TODO: test averageSwitchOwnershipPointsTeleop } @@ -166,7 +166,7 @@ public void averageSwitchOwnershipPointsTeleopTest() { * Test the property 'averageVaultPoints' */ @Test - public void averageVaultPointsTest() { + void averageVaultPointsTest() { // TODO: test averageVaultPoints } @@ -174,7 +174,7 @@ public void averageVaultPointsTest() { * Test the property 'averageWinMargin' */ @Test - public void averageWinMarginTest() { + void averageWinMarginTest() { // TODO: test averageWinMargin } @@ -182,7 +182,7 @@ public void averageWinMarginTest() { * Test the property 'averageWinScore' */ @Test - public void averageWinScoreTest() { + void averageWinScoreTest() { // TODO: test averageWinScore } @@ -190,7 +190,7 @@ public void averageWinScoreTest() { * Test the property 'boostPlayedCounts' */ @Test - public void boostPlayedCountsTest() { + void boostPlayedCountsTest() { // TODO: test boostPlayedCounts } @@ -198,7 +198,7 @@ public void boostPlayedCountsTest() { * Test the property 'climbCounts' */ @Test - public void climbCountsTest() { + void climbCountsTest() { // TODO: test climbCounts } @@ -206,7 +206,7 @@ public void climbCountsTest() { * Test the property 'faceTheBossAchieved' */ @Test - public void faceTheBossAchievedTest() { + void faceTheBossAchievedTest() { // TODO: test faceTheBossAchieved } @@ -214,7 +214,7 @@ public void faceTheBossAchievedTest() { * Test the property 'forcePlayedCounts' */ @Test - public void forcePlayedCountsTest() { + void forcePlayedCountsTest() { // TODO: test forcePlayedCounts } @@ -222,7 +222,7 @@ public void forcePlayedCountsTest() { * Test the property 'highScore' */ @Test - public void highScoreTest() { + void highScoreTest() { // TODO: test highScore } @@ -230,7 +230,7 @@ public void highScoreTest() { * Test the property 'levitatePlayedCounts' */ @Test - public void levitatePlayedCountsTest() { + void levitatePlayedCountsTest() { // TODO: test levitatePlayedCounts } @@ -238,7 +238,7 @@ public void levitatePlayedCountsTest() { * Test the property 'runCountsAuto' */ @Test - public void runCountsAutoTest() { + void runCountsAutoTest() { // TODO: test runCountsAuto } @@ -246,7 +246,7 @@ public void runCountsAutoTest() { * Test the property 'scaleNeutralPercentage' */ @Test - public void scaleNeutralPercentageTest() { + void scaleNeutralPercentageTest() { // TODO: test scaleNeutralPercentage } @@ -254,7 +254,7 @@ public void scaleNeutralPercentageTest() { * Test the property 'scaleNeutralPercentageAuto' */ @Test - public void scaleNeutralPercentageAutoTest() { + void scaleNeutralPercentageAutoTest() { // TODO: test scaleNeutralPercentageAuto } @@ -262,7 +262,7 @@ public void scaleNeutralPercentageAutoTest() { * Test the property 'scaleNeutralPercentageTeleop' */ @Test - public void scaleNeutralPercentageTeleopTest() { + void scaleNeutralPercentageTeleopTest() { // TODO: test scaleNeutralPercentageTeleop } @@ -270,7 +270,7 @@ public void scaleNeutralPercentageTeleopTest() { * Test the property 'switchOwnedCountsAuto' */ @Test - public void switchOwnedCountsAutoTest() { + void switchOwnedCountsAutoTest() { // TODO: test switchOwnedCountsAuto } @@ -278,7 +278,7 @@ public void switchOwnedCountsAutoTest() { * Test the property 'unicornMatches' */ @Test - public void unicornMatchesTest() { + void unicornMatchesTest() { // TODO: test unicornMatches } @@ -286,7 +286,7 @@ public void unicornMatchesTest() { * Test the property 'winningOppSwitchDenialPercentageTeleop' */ @Test - public void winningOppSwitchDenialPercentageTeleopTest() { + void winningOppSwitchDenialPercentageTeleopTest() { // TODO: test winningOppSwitchDenialPercentageTeleop } @@ -294,7 +294,7 @@ public void winningOppSwitchDenialPercentageTeleopTest() { * Test the property 'winningOwnSwitchOwnershipPercentage' */ @Test - public void winningOwnSwitchOwnershipPercentageTest() { + void winningOwnSwitchOwnershipPercentageTest() { // TODO: test winningOwnSwitchOwnershipPercentage } @@ -302,7 +302,7 @@ public void winningOwnSwitchOwnershipPercentageTest() { * Test the property 'winningOwnSwitchOwnershipPercentageAuto' */ @Test - public void winningOwnSwitchOwnershipPercentageAutoTest() { + void winningOwnSwitchOwnershipPercentageAutoTest() { // TODO: test winningOwnSwitchOwnershipPercentageAuto } @@ -310,7 +310,7 @@ public void winningOwnSwitchOwnershipPercentageAutoTest() { * Test the property 'winningOwnSwitchOwnershipPercentageTeleop' */ @Test - public void winningOwnSwitchOwnershipPercentageTeleopTest() { + void winningOwnSwitchOwnershipPercentageTeleopTest() { // TODO: test winningOwnSwitchOwnershipPercentageTeleop } @@ -318,7 +318,7 @@ public void winningOwnSwitchOwnershipPercentageTeleopTest() { * Test the property 'winningScaleOwnershipPercentage' */ @Test - public void winningScaleOwnershipPercentageTest() { + void winningScaleOwnershipPercentageTest() { // TODO: test winningScaleOwnershipPercentage } @@ -326,7 +326,7 @@ public void winningScaleOwnershipPercentageTest() { * Test the property 'winningScaleOwnershipPercentageAuto' */ @Test - public void winningScaleOwnershipPercentageAutoTest() { + void winningScaleOwnershipPercentageAutoTest() { // TODO: test winningScaleOwnershipPercentageAuto } @@ -334,7 +334,7 @@ public void winningScaleOwnershipPercentageAutoTest() { * Test the property 'winningScaleOwnershipPercentageTeleop' */ @Test - public void winningScaleOwnershipPercentageTeleopTest() { + void winningScaleOwnershipPercentageTeleopTest() { // TODO: test winningScaleOwnershipPercentageTeleop } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsightsTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsightsTest.java index c26fcfb..29bc8a3 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsightsTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventInsightsTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventInsights */ -public class EventInsightsTest { +class EventInsightsTest { private final EventInsights model = new EventInsights(); /** * Model tests for EventInsights */ @Test - public void testEventInsights() { + void testEventInsights() { // TODO: test EventInsights } @@ -44,7 +44,7 @@ public void testEventInsights() { * Test the property 'qual' */ @Test - public void qualTest() { + void qualTest() { // TODO: test qual } @@ -52,7 +52,7 @@ public void qualTest() { * Test the property 'playoff' */ @Test - public void playoffTest() { + void playoffTest() { // TODO: test playoff } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventOPRsTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventOPRsTest.java index 1c28db3..da8d269 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventOPRsTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventOPRsTest.java @@ -24,22 +24,22 @@ import java.util.HashMap; import java.util.List; import java.util.Map; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventOPRs */ -public class EventOPRsTest { +class EventOPRsTest { private final EventOPRs model = new EventOPRs(); /** * Model tests for EventOPRs */ @Test - public void testEventOPRs() { + void testEventOPRs() { // TODO: test EventOPRs } @@ -47,7 +47,7 @@ public void testEventOPRs() { * Test the property 'oprs' */ @Test - public void oprsTest() { + void oprsTest() { // TODO: test oprs } @@ -55,7 +55,7 @@ public void oprsTest() { * Test the property 'dprs' */ @Test - public void dprsTest() { + void dprsTest() { // TODO: test dprs } @@ -63,7 +63,7 @@ public void dprsTest() { * Test the property 'ccwms' */ @Test - public void ccwmsTest() { + void ccwmsTest() { // TODO: test ccwms } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingExtraStatsInfoTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingExtraStatsInfoTest.java index 8ead42e..7bd0863 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingExtraStatsInfoTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingExtraStatsInfoTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import java.math.BigDecimal; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventRankingExtraStatsInfo */ -public class EventRankingExtraStatsInfoTest { +class EventRankingExtraStatsInfoTest { private final EventRankingExtraStatsInfo model = new EventRankingExtraStatsInfo(); /** * Model tests for EventRankingExtraStatsInfo */ @Test - public void testEventRankingExtraStatsInfo() { + void testEventRankingExtraStatsInfo() { // TODO: test EventRankingExtraStatsInfo } @@ -45,7 +45,7 @@ public void testEventRankingExtraStatsInfo() { * Test the property 'precision' */ @Test - public void precisionTest() { + void precisionTest() { // TODO: test precision } @@ -53,7 +53,7 @@ public void precisionTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingRankingsTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingRankingsTest.java index 320091b..61f3680 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingRankingsTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingRankingsTest.java @@ -25,22 +25,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.WLTRecord; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventRankingRankings */ -public class EventRankingRankingsTest { +class EventRankingRankingsTest { private final EventRankingRankings model = new EventRankingRankings(); /** * Model tests for EventRankingRankings */ @Test - public void testEventRankingRankings() { + void testEventRankingRankings() { // TODO: test EventRankingRankings } @@ -48,7 +48,7 @@ public void testEventRankingRankings() { * Test the property 'matchesPlayed' */ @Test - public void matchesPlayedTest() { + void matchesPlayedTest() { // TODO: test matchesPlayed } @@ -56,7 +56,7 @@ public void matchesPlayedTest() { * Test the property 'qualAverage' */ @Test - public void qualAverageTest() { + void qualAverageTest() { // TODO: test qualAverage } @@ -64,7 +64,7 @@ public void qualAverageTest() { * Test the property 'extraStats' */ @Test - public void extraStatsTest() { + void extraStatsTest() { // TODO: test extraStats } @@ -72,7 +72,7 @@ public void extraStatsTest() { * Test the property 'sortOrders' */ @Test - public void sortOrdersTest() { + void sortOrdersTest() { // TODO: test sortOrders } @@ -80,7 +80,7 @@ public void sortOrdersTest() { * Test the property 'record' */ @Test - public void recordTest() { + void recordTest() { // TODO: test record } @@ -88,7 +88,7 @@ public void recordTest() { * Test the property 'rank' */ @Test - public void rankTest() { + void rankTest() { // TODO: test rank } @@ -96,7 +96,7 @@ public void rankTest() { * Test the property 'dq' */ @Test - public void dqTest() { + void dqTest() { // TODO: test dq } @@ -104,7 +104,7 @@ public void dqTest() { * Test the property 'teamKey' */ @Test - public void teamKeyTest() { + void teamKeyTest() { // TODO: test teamKey } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingSortOrderInfoTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingSortOrderInfoTest.java index 94d5b8e..f8489b6 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingSortOrderInfoTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingSortOrderInfoTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventRankingSortOrderInfo */ -public class EventRankingSortOrderInfoTest { +class EventRankingSortOrderInfoTest { private final EventRankingSortOrderInfo model = new EventRankingSortOrderInfo(); /** * Model tests for EventRankingSortOrderInfo */ @Test - public void testEventRankingSortOrderInfo() { + void testEventRankingSortOrderInfo() { // TODO: test EventRankingSortOrderInfo } @@ -44,7 +44,7 @@ public void testEventRankingSortOrderInfo() { * Test the property 'precision' */ @Test - public void precisionTest() { + void precisionTest() { // TODO: test precision } @@ -52,7 +52,7 @@ public void precisionTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingTest.java index 03bcf90..1a33395 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventRankingTest.java @@ -26,22 +26,22 @@ import net.thefletcher.tbaapi.v3client.model.EventRankingExtraStatsInfo; import net.thefletcher.tbaapi.v3client.model.EventRankingRankings; import net.thefletcher.tbaapi.v3client.model.EventRankingSortOrderInfo; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventRanking */ -public class EventRankingTest { +class EventRankingTest { private final EventRanking model = new EventRanking(); /** * Model tests for EventRanking */ @Test - public void testEventRanking() { + void testEventRanking() { // TODO: test EventRanking } @@ -49,7 +49,7 @@ public void testEventRanking() { * Test the property 'rankings' */ @Test - public void rankingsTest() { + void rankingsTest() { // TODO: test rankings } @@ -57,7 +57,7 @@ public void rankingsTest() { * Test the property 'extraStatsInfo' */ @Test - public void extraStatsInfoTest() { + void extraStatsInfoTest() { // TODO: test extraStatsInfo } @@ -65,7 +65,7 @@ public void extraStatsInfoTest() { * Test the property 'sortOrderInfo' */ @Test - public void sortOrderInfoTest() { + void sortOrderInfoTest() { // TODO: test sortOrderInfo } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventSimpleTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventSimpleTest.java index 01f1c86..e4838b0 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventSimpleTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventSimpleTest.java @@ -23,22 +23,22 @@ import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.DistrictList; import org.threeten.bp.LocalDate; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for EventSimple */ -public class EventSimpleTest { +class EventSimpleTest { private final EventSimple model = new EventSimple(); /** * Model tests for EventSimple */ @Test - public void testEventSimple() { + void testEventSimple() { // TODO: test EventSimple } @@ -46,7 +46,7 @@ public void testEventSimple() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -54,7 +54,7 @@ public void keyTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -62,7 +62,7 @@ public void nameTest() { * Test the property 'eventCode' */ @Test - public void eventCodeTest() { + void eventCodeTest() { // TODO: test eventCode } @@ -70,7 +70,7 @@ public void eventCodeTest() { * Test the property 'eventType' */ @Test - public void eventTypeTest() { + void eventTypeTest() { // TODO: test eventType } @@ -78,7 +78,7 @@ public void eventTypeTest() { * Test the property 'district' */ @Test - public void districtTest() { + void districtTest() { // TODO: test district } @@ -86,7 +86,7 @@ public void districtTest() { * Test the property 'city' */ @Test - public void cityTest() { + void cityTest() { // TODO: test city } @@ -94,7 +94,7 @@ public void cityTest() { * Test the property 'stateProv' */ @Test - public void stateProvTest() { + void stateProvTest() { // TODO: test stateProv } @@ -102,7 +102,7 @@ public void stateProvTest() { * Test the property 'country' */ @Test - public void countryTest() { + void countryTest() { // TODO: test country } @@ -110,7 +110,7 @@ public void countryTest() { * Test the property 'startDate' */ @Test - public void startDateTest() { + void startDateTest() { // TODO: test startDate } @@ -118,7 +118,7 @@ public void startDateTest() { * Test the property 'endDate' */ @Test - public void endDateTest() { + void endDateTest() { // TODO: test endDate } @@ -126,7 +126,7 @@ public void endDateTest() { * Test the property 'year' */ @Test - public void yearTest() { + void yearTest() { // TODO: test year } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventTest.java index a242925..f099760 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/EventTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/EventTest.java @@ -26,22 +26,22 @@ import net.thefletcher.tbaapi.v3client.model.DistrictList; import net.thefletcher.tbaapi.v3client.model.Webcast; import org.threeten.bp.LocalDate; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Event */ -public class EventTest { +class EventTest { private final Event model = new Event(); /** * Model tests for Event */ @Test - public void testEvent() { + void testEvent() { // TODO: test Event } @@ -49,7 +49,7 @@ public void testEvent() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -57,7 +57,7 @@ public void keyTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -65,7 +65,7 @@ public void nameTest() { * Test the property 'eventCode' */ @Test - public void eventCodeTest() { + void eventCodeTest() { // TODO: test eventCode } @@ -73,7 +73,7 @@ public void eventCodeTest() { * Test the property 'eventType' */ @Test - public void eventTypeTest() { + void eventTypeTest() { // TODO: test eventType } @@ -81,7 +81,7 @@ public void eventTypeTest() { * Test the property 'district' */ @Test - public void districtTest() { + void districtTest() { // TODO: test district } @@ -89,7 +89,7 @@ public void districtTest() { * Test the property 'city' */ @Test - public void cityTest() { + void cityTest() { // TODO: test city } @@ -97,7 +97,7 @@ public void cityTest() { * Test the property 'stateProv' */ @Test - public void stateProvTest() { + void stateProvTest() { // TODO: test stateProv } @@ -105,7 +105,7 @@ public void stateProvTest() { * Test the property 'country' */ @Test - public void countryTest() { + void countryTest() { // TODO: test country } @@ -113,7 +113,7 @@ public void countryTest() { * Test the property 'startDate' */ @Test - public void startDateTest() { + void startDateTest() { // TODO: test startDate } @@ -121,7 +121,7 @@ public void startDateTest() { * Test the property 'endDate' */ @Test - public void endDateTest() { + void endDateTest() { // TODO: test endDate } @@ -129,7 +129,7 @@ public void endDateTest() { * Test the property 'year' */ @Test - public void yearTest() { + void yearTest() { // TODO: test year } @@ -137,7 +137,7 @@ public void yearTest() { * Test the property 'shortName' */ @Test - public void shortNameTest() { + void shortNameTest() { // TODO: test shortName } @@ -145,7 +145,7 @@ public void shortNameTest() { * Test the property 'eventTypeString' */ @Test - public void eventTypeStringTest() { + void eventTypeStringTest() { // TODO: test eventTypeString } @@ -153,7 +153,7 @@ public void eventTypeStringTest() { * Test the property 'week' */ @Test - public void weekTest() { + void weekTest() { // TODO: test week } @@ -161,7 +161,7 @@ public void weekTest() { * Test the property 'address' */ @Test - public void addressTest() { + void addressTest() { // TODO: test address } @@ -169,7 +169,7 @@ public void addressTest() { * Test the property 'postalCode' */ @Test - public void postalCodeTest() { + void postalCodeTest() { // TODO: test postalCode } @@ -177,7 +177,7 @@ public void postalCodeTest() { * Test the property 'gmapsPlaceId' */ @Test - public void gmapsPlaceIdTest() { + void gmapsPlaceIdTest() { // TODO: test gmapsPlaceId } @@ -185,7 +185,7 @@ public void gmapsPlaceIdTest() { * Test the property 'gmapsUrl' */ @Test - public void gmapsUrlTest() { + void gmapsUrlTest() { // TODO: test gmapsUrl } @@ -193,7 +193,7 @@ public void gmapsUrlTest() { * Test the property 'lat' */ @Test - public void latTest() { + void latTest() { // TODO: test lat } @@ -201,7 +201,7 @@ public void latTest() { * Test the property 'lng' */ @Test - public void lngTest() { + void lngTest() { // TODO: test lng } @@ -209,7 +209,7 @@ public void lngTest() { * Test the property 'locationName' */ @Test - public void locationNameTest() { + void locationNameTest() { // TODO: test locationName } @@ -217,7 +217,7 @@ public void locationNameTest() { * Test the property 'timezone' */ @Test - public void timezoneTest() { + void timezoneTest() { // TODO: test timezone } @@ -225,7 +225,7 @@ public void timezoneTest() { * Test the property 'website' */ @Test - public void websiteTest() { + void websiteTest() { // TODO: test website } @@ -233,7 +233,7 @@ public void websiteTest() { * Test the property 'firstEventId' */ @Test - public void firstEventIdTest() { + void firstEventIdTest() { // TODO: test firstEventId } @@ -241,7 +241,7 @@ public void firstEventIdTest() { * Test the property 'firstEventCode' */ @Test - public void firstEventCodeTest() { + void firstEventCodeTest() { // TODO: test firstEventCode } @@ -249,7 +249,7 @@ public void firstEventCodeTest() { * Test the property 'webcasts' */ @Test - public void webcastsTest() { + void webcastsTest() { // TODO: test webcasts } @@ -257,7 +257,7 @@ public void webcastsTest() { * Test the property 'divisionKeys' */ @Test - public void divisionKeysTest() { + void divisionKeysTest() { // TODO: test divisionKeys } @@ -265,7 +265,7 @@ public void divisionKeysTest() { * Test the property 'parentEventKey' */ @Test - public void parentEventKeyTest() { + void parentEventKeyTest() { // TODO: test parentEventKey } @@ -273,7 +273,7 @@ public void parentEventKeyTest() { * Test the property 'playoffType' */ @Test - public void playoffTypeTest() { + void playoffTypeTest() { // TODO: test playoffType } @@ -281,7 +281,7 @@ public void playoffTypeTest() { * Test the property 'playoffTypeString' */ @Test - public void playoffTypeStringTest() { + void playoffTypeStringTest() { // TODO: test playoffTypeString } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAllianceTest.java index 2392898..72e8628 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAllianceTest.java @@ -23,22 +23,22 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchAlliance */ -public class MatchAllianceTest { +class MatchAllianceTest { private final MatchAlliance model = new MatchAlliance(); /** * Model tests for MatchAlliance */ @Test - public void testMatchAlliance() { + void testMatchAlliance() { // TODO: test MatchAlliance } @@ -46,7 +46,7 @@ public void testMatchAlliance() { * Test the property 'score' */ @Test - public void scoreTest() { + void scoreTest() { // TODO: test score } @@ -54,7 +54,7 @@ public void scoreTest() { * Test the property 'teamKeys' */ @Test - public void teamKeysTest() { + void teamKeysTest() { // TODO: test teamKeys } @@ -62,7 +62,7 @@ public void teamKeysTest() { * Test the property 'surrogateTeamKeys' */ @Test - public void surrogateTeamKeysTest() { + void surrogateTeamKeysTest() { // TODO: test surrogateTeamKeys } @@ -70,7 +70,7 @@ public void surrogateTeamKeysTest() { * Test the property 'dqTeamKeys' */ @Test - public void dqTeamKeysTest() { + void dqTeamKeysTest() { // TODO: test dqTeamKeys } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAlliancesTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAlliancesTest.java index 0b92a9d..982f1b8 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAlliancesTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchAlliancesTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchAlliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchAlliances */ -public class MatchAlliancesTest { +class MatchAlliancesTest { private final MatchAlliances model = new MatchAlliances(); /** * Model tests for MatchAlliances */ @Test - public void testMatchAlliances() { + void testMatchAlliances() { // TODO: test MatchAlliances } @@ -45,7 +45,7 @@ public void testMatchAlliances() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } @@ -53,7 +53,7 @@ public void redTest() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015AllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015AllianceTest.java index f5ad2a2..c2dc24d 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015AllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015AllianceTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2015Alliance */ -public class MatchScoreBreakdown2015AllianceTest { +class MatchScoreBreakdown2015AllianceTest { private final MatchScoreBreakdown2015Alliance model = new MatchScoreBreakdown2015Alliance(); /** * Model tests for MatchScoreBreakdown2015Alliance */ @Test - public void testMatchScoreBreakdown2015Alliance() { + void testMatchScoreBreakdown2015Alliance() { // TODO: test MatchScoreBreakdown2015Alliance } @@ -44,7 +44,7 @@ public void testMatchScoreBreakdown2015Alliance() { * Test the property 'autoPoints' */ @Test - public void autoPointsTest() { + void autoPointsTest() { // TODO: test autoPoints } @@ -52,7 +52,7 @@ public void autoPointsTest() { * Test the property 'teleopPoints' */ @Test - public void teleopPointsTest() { + void teleopPointsTest() { // TODO: test teleopPoints } @@ -60,7 +60,7 @@ public void teleopPointsTest() { * Test the property 'containerPoints' */ @Test - public void containerPointsTest() { + void containerPointsTest() { // TODO: test containerPoints } @@ -68,7 +68,7 @@ public void containerPointsTest() { * Test the property 'totePoints' */ @Test - public void totePointsTest() { + void totePointsTest() { // TODO: test totePoints } @@ -76,7 +76,7 @@ public void totePointsTest() { * Test the property 'litterPoints' */ @Test - public void litterPointsTest() { + void litterPointsTest() { // TODO: test litterPoints } @@ -84,7 +84,7 @@ public void litterPointsTest() { * Test the property 'foulPoints' */ @Test - public void foulPointsTest() { + void foulPointsTest() { // TODO: test foulPoints } @@ -92,7 +92,7 @@ public void foulPointsTest() { * Test the property 'adjustPoints' */ @Test - public void adjustPointsTest() { + void adjustPointsTest() { // TODO: test adjustPoints } @@ -100,7 +100,7 @@ public void adjustPointsTest() { * Test the property 'totalPoints' */ @Test - public void totalPointsTest() { + void totalPointsTest() { // TODO: test totalPoints } @@ -108,7 +108,7 @@ public void totalPointsTest() { * Test the property 'foulCount' */ @Test - public void foulCountTest() { + void foulCountTest() { // TODO: test foulCount } @@ -116,7 +116,7 @@ public void foulCountTest() { * Test the property 'toteCountFar' */ @Test - public void toteCountFarTest() { + void toteCountFarTest() { // TODO: test toteCountFar } @@ -124,7 +124,7 @@ public void toteCountFarTest() { * Test the property 'toteCountNear' */ @Test - public void toteCountNearTest() { + void toteCountNearTest() { // TODO: test toteCountNear } @@ -132,7 +132,7 @@ public void toteCountNearTest() { * Test the property 'toteSet' */ @Test - public void toteSetTest() { + void toteSetTest() { // TODO: test toteSet } @@ -140,7 +140,7 @@ public void toteSetTest() { * Test the property 'toteStack' */ @Test - public void toteStackTest() { + void toteStackTest() { // TODO: test toteStack } @@ -148,7 +148,7 @@ public void toteStackTest() { * Test the property 'containerCountLevel1' */ @Test - public void containerCountLevel1Test() { + void containerCountLevel1Test() { // TODO: test containerCountLevel1 } @@ -156,7 +156,7 @@ public void containerCountLevel1Test() { * Test the property 'containerCountLevel2' */ @Test - public void containerCountLevel2Test() { + void containerCountLevel2Test() { // TODO: test containerCountLevel2 } @@ -164,7 +164,7 @@ public void containerCountLevel2Test() { * Test the property 'containerCountLevel3' */ @Test - public void containerCountLevel3Test() { + void containerCountLevel3Test() { // TODO: test containerCountLevel3 } @@ -172,7 +172,7 @@ public void containerCountLevel3Test() { * Test the property 'containerCountLevel4' */ @Test - public void containerCountLevel4Test() { + void containerCountLevel4Test() { // TODO: test containerCountLevel4 } @@ -180,7 +180,7 @@ public void containerCountLevel4Test() { * Test the property 'containerCountLevel5' */ @Test - public void containerCountLevel5Test() { + void containerCountLevel5Test() { // TODO: test containerCountLevel5 } @@ -188,7 +188,7 @@ public void containerCountLevel5Test() { * Test the property 'containerCountLevel6' */ @Test - public void containerCountLevel6Test() { + void containerCountLevel6Test() { // TODO: test containerCountLevel6 } @@ -196,7 +196,7 @@ public void containerCountLevel6Test() { * Test the property 'containerSet' */ @Test - public void containerSetTest() { + void containerSetTest() { // TODO: test containerSet } @@ -204,7 +204,7 @@ public void containerSetTest() { * Test the property 'litterCountContainer' */ @Test - public void litterCountContainerTest() { + void litterCountContainerTest() { // TODO: test litterCountContainer } @@ -212,7 +212,7 @@ public void litterCountContainerTest() { * Test the property 'litterCountLandfill' */ @Test - public void litterCountLandfillTest() { + void litterCountLandfillTest() { // TODO: test litterCountLandfill } @@ -220,7 +220,7 @@ public void litterCountLandfillTest() { * Test the property 'litterCountUnprocessed' */ @Test - public void litterCountUnprocessedTest() { + void litterCountUnprocessedTest() { // TODO: test litterCountUnprocessed } @@ -228,7 +228,7 @@ public void litterCountUnprocessedTest() { * Test the property 'robotSet' */ @Test - public void robotSetTest() { + void robotSetTest() { // TODO: test robotSet } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015Test.java index 76cc3da..0b4919e 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2015Test.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchScoreBreakdown2015Alliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2015 */ -public class MatchScoreBreakdown2015Test { +class MatchScoreBreakdown2015Test { private final MatchScoreBreakdown2015 model = new MatchScoreBreakdown2015(); /** * Model tests for MatchScoreBreakdown2015 */ @Test - public void testMatchScoreBreakdown2015() { + void testMatchScoreBreakdown2015() { // TODO: test MatchScoreBreakdown2015 } @@ -45,7 +45,7 @@ public void testMatchScoreBreakdown2015() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } @@ -53,7 +53,7 @@ public void blueTest() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } @@ -61,7 +61,7 @@ public void redTest() { * Test the property 'coopertition' */ @Test - public void coopertitionTest() { + void coopertitionTest() { // TODO: test coopertition } @@ -69,7 +69,7 @@ public void coopertitionTest() { * Test the property 'coopertitionPoints' */ @Test - public void coopertitionPointsTest() { + void coopertitionPointsTest() { // TODO: test coopertitionPoints } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016AllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016AllianceTest.java index d53310b..5623dae 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016AllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016AllianceTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2016Alliance */ -public class MatchScoreBreakdown2016AllianceTest { +class MatchScoreBreakdown2016AllianceTest { private final MatchScoreBreakdown2016Alliance model = new MatchScoreBreakdown2016Alliance(); /** * Model tests for MatchScoreBreakdown2016Alliance */ @Test - public void testMatchScoreBreakdown2016Alliance() { + void testMatchScoreBreakdown2016Alliance() { // TODO: test MatchScoreBreakdown2016Alliance } @@ -44,7 +44,7 @@ public void testMatchScoreBreakdown2016Alliance() { * Test the property 'autoPoints' */ @Test - public void autoPointsTest() { + void autoPointsTest() { // TODO: test autoPoints } @@ -52,7 +52,7 @@ public void autoPointsTest() { * Test the property 'teleopPoints' */ @Test - public void teleopPointsTest() { + void teleopPointsTest() { // TODO: test teleopPoints } @@ -60,7 +60,7 @@ public void teleopPointsTest() { * Test the property 'breachPoints' */ @Test - public void breachPointsTest() { + void breachPointsTest() { // TODO: test breachPoints } @@ -68,7 +68,7 @@ public void breachPointsTest() { * Test the property 'foulPoints' */ @Test - public void foulPointsTest() { + void foulPointsTest() { // TODO: test foulPoints } @@ -76,7 +76,7 @@ public void foulPointsTest() { * Test the property 'capturePoints' */ @Test - public void capturePointsTest() { + void capturePointsTest() { // TODO: test capturePoints } @@ -84,7 +84,7 @@ public void capturePointsTest() { * Test the property 'adjustPoints' */ @Test - public void adjustPointsTest() { + void adjustPointsTest() { // TODO: test adjustPoints } @@ -92,7 +92,7 @@ public void adjustPointsTest() { * Test the property 'totalPoints' */ @Test - public void totalPointsTest() { + void totalPointsTest() { // TODO: test totalPoints } @@ -100,7 +100,7 @@ public void totalPointsTest() { * Test the property 'robot1Auto' */ @Test - public void robot1AutoTest() { + void robot1AutoTest() { // TODO: test robot1Auto } @@ -108,7 +108,7 @@ public void robot1AutoTest() { * Test the property 'robot2Auto' */ @Test - public void robot2AutoTest() { + void robot2AutoTest() { // TODO: test robot2Auto } @@ -116,7 +116,7 @@ public void robot2AutoTest() { * Test the property 'robot3Auto' */ @Test - public void robot3AutoTest() { + void robot3AutoTest() { // TODO: test robot3Auto } @@ -124,7 +124,7 @@ public void robot3AutoTest() { * Test the property 'autoReachPoints' */ @Test - public void autoReachPointsTest() { + void autoReachPointsTest() { // TODO: test autoReachPoints } @@ -132,7 +132,7 @@ public void autoReachPointsTest() { * Test the property 'autoCrossingPoints' */ @Test - public void autoCrossingPointsTest() { + void autoCrossingPointsTest() { // TODO: test autoCrossingPoints } @@ -140,7 +140,7 @@ public void autoCrossingPointsTest() { * Test the property 'autoBouldersLow' */ @Test - public void autoBouldersLowTest() { + void autoBouldersLowTest() { // TODO: test autoBouldersLow } @@ -148,7 +148,7 @@ public void autoBouldersLowTest() { * Test the property 'autoBouldersHigh' */ @Test - public void autoBouldersHighTest() { + void autoBouldersHighTest() { // TODO: test autoBouldersHigh } @@ -156,7 +156,7 @@ public void autoBouldersHighTest() { * Test the property 'autoBoulderPoints' */ @Test - public void autoBoulderPointsTest() { + void autoBoulderPointsTest() { // TODO: test autoBoulderPoints } @@ -164,7 +164,7 @@ public void autoBoulderPointsTest() { * Test the property 'teleopCrossingPoints' */ @Test - public void teleopCrossingPointsTest() { + void teleopCrossingPointsTest() { // TODO: test teleopCrossingPoints } @@ -172,7 +172,7 @@ public void teleopCrossingPointsTest() { * Test the property 'teleopBouldersLow' */ @Test - public void teleopBouldersLowTest() { + void teleopBouldersLowTest() { // TODO: test teleopBouldersLow } @@ -180,7 +180,7 @@ public void teleopBouldersLowTest() { * Test the property 'teleopBouldersHigh' */ @Test - public void teleopBouldersHighTest() { + void teleopBouldersHighTest() { // TODO: test teleopBouldersHigh } @@ -188,7 +188,7 @@ public void teleopBouldersHighTest() { * Test the property 'teleopBoulderPoints' */ @Test - public void teleopBoulderPointsTest() { + void teleopBoulderPointsTest() { // TODO: test teleopBoulderPoints } @@ -196,7 +196,7 @@ public void teleopBoulderPointsTest() { * Test the property 'teleopDefensesBreached' */ @Test - public void teleopDefensesBreachedTest() { + void teleopDefensesBreachedTest() { // TODO: test teleopDefensesBreached } @@ -204,7 +204,7 @@ public void teleopDefensesBreachedTest() { * Test the property 'teleopChallengePoints' */ @Test - public void teleopChallengePointsTest() { + void teleopChallengePointsTest() { // TODO: test teleopChallengePoints } @@ -212,7 +212,7 @@ public void teleopChallengePointsTest() { * Test the property 'teleopScalePoints' */ @Test - public void teleopScalePointsTest() { + void teleopScalePointsTest() { // TODO: test teleopScalePoints } @@ -220,7 +220,7 @@ public void teleopScalePointsTest() { * Test the property 'teleopTowerCaptured' */ @Test - public void teleopTowerCapturedTest() { + void teleopTowerCapturedTest() { // TODO: test teleopTowerCaptured } @@ -228,7 +228,7 @@ public void teleopTowerCapturedTest() { * Test the property 'towerFaceA' */ @Test - public void towerFaceATest() { + void towerFaceATest() { // TODO: test towerFaceA } @@ -236,7 +236,7 @@ public void towerFaceATest() { * Test the property 'towerFaceB' */ @Test - public void towerFaceBTest() { + void towerFaceBTest() { // TODO: test towerFaceB } @@ -244,7 +244,7 @@ public void towerFaceBTest() { * Test the property 'towerFaceC' */ @Test - public void towerFaceCTest() { + void towerFaceCTest() { // TODO: test towerFaceC } @@ -252,7 +252,7 @@ public void towerFaceCTest() { * Test the property 'towerEndStrength' */ @Test - public void towerEndStrengthTest() { + void towerEndStrengthTest() { // TODO: test towerEndStrength } @@ -260,7 +260,7 @@ public void towerEndStrengthTest() { * Test the property 'techFoulCount' */ @Test - public void techFoulCountTest() { + void techFoulCountTest() { // TODO: test techFoulCount } @@ -268,7 +268,7 @@ public void techFoulCountTest() { * Test the property 'foulCount' */ @Test - public void foulCountTest() { + void foulCountTest() { // TODO: test foulCount } @@ -276,7 +276,7 @@ public void foulCountTest() { * Test the property 'position2' */ @Test - public void position2Test() { + void position2Test() { // TODO: test position2 } @@ -284,7 +284,7 @@ public void position2Test() { * Test the property 'position3' */ @Test - public void position3Test() { + void position3Test() { // TODO: test position3 } @@ -292,7 +292,7 @@ public void position3Test() { * Test the property 'position4' */ @Test - public void position4Test() { + void position4Test() { // TODO: test position4 } @@ -300,7 +300,7 @@ public void position4Test() { * Test the property 'position5' */ @Test - public void position5Test() { + void position5Test() { // TODO: test position5 } @@ -308,7 +308,7 @@ public void position5Test() { * Test the property 'position1crossings' */ @Test - public void position1crossingsTest() { + void position1crossingsTest() { // TODO: test position1crossings } @@ -316,7 +316,7 @@ public void position1crossingsTest() { * Test the property 'position2crossings' */ @Test - public void position2crossingsTest() { + void position2crossingsTest() { // TODO: test position2crossings } @@ -324,7 +324,7 @@ public void position2crossingsTest() { * Test the property 'position3crossings' */ @Test - public void position3crossingsTest() { + void position3crossingsTest() { // TODO: test position3crossings } @@ -332,7 +332,7 @@ public void position3crossingsTest() { * Test the property 'position4crossings' */ @Test - public void position4crossingsTest() { + void position4crossingsTest() { // TODO: test position4crossings } @@ -340,7 +340,7 @@ public void position4crossingsTest() { * Test the property 'position5crossings' */ @Test - public void position5crossingsTest() { + void position5crossingsTest() { // TODO: test position5crossings } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016Test.java index 855bb3e..611a9ab 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2016Test.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchScoreBreakdown2016Alliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2016 */ -public class MatchScoreBreakdown2016Test { +class MatchScoreBreakdown2016Test { private final MatchScoreBreakdown2016 model = new MatchScoreBreakdown2016(); /** * Model tests for MatchScoreBreakdown2016 */ @Test - public void testMatchScoreBreakdown2016() { + void testMatchScoreBreakdown2016() { // TODO: test MatchScoreBreakdown2016 } @@ -45,7 +45,7 @@ public void testMatchScoreBreakdown2016() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } @@ -53,7 +53,7 @@ public void blueTest() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017AllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017AllianceTest.java index 3af5c6a..28a7917 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017AllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017AllianceTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2017Alliance */ -public class MatchScoreBreakdown2017AllianceTest { +class MatchScoreBreakdown2017AllianceTest { private final MatchScoreBreakdown2017Alliance model = new MatchScoreBreakdown2017Alliance(); /** * Model tests for MatchScoreBreakdown2017Alliance */ @Test - public void testMatchScoreBreakdown2017Alliance() { + void testMatchScoreBreakdown2017Alliance() { // TODO: test MatchScoreBreakdown2017Alliance } @@ -44,7 +44,7 @@ public void testMatchScoreBreakdown2017Alliance() { * Test the property 'autoPoints' */ @Test - public void autoPointsTest() { + void autoPointsTest() { // TODO: test autoPoints } @@ -52,7 +52,7 @@ public void autoPointsTest() { * Test the property 'teleopPoints' */ @Test - public void teleopPointsTest() { + void teleopPointsTest() { // TODO: test teleopPoints } @@ -60,7 +60,7 @@ public void teleopPointsTest() { * Test the property 'foulPoints' */ @Test - public void foulPointsTest() { + void foulPointsTest() { // TODO: test foulPoints } @@ -68,7 +68,7 @@ public void foulPointsTest() { * Test the property 'adjustPoints' */ @Test - public void adjustPointsTest() { + void adjustPointsTest() { // TODO: test adjustPoints } @@ -76,7 +76,7 @@ public void adjustPointsTest() { * Test the property 'totalPoints' */ @Test - public void totalPointsTest() { + void totalPointsTest() { // TODO: test totalPoints } @@ -84,7 +84,7 @@ public void totalPointsTest() { * Test the property 'robot1Auto' */ @Test - public void robot1AutoTest() { + void robot1AutoTest() { // TODO: test robot1Auto } @@ -92,7 +92,7 @@ public void robot1AutoTest() { * Test the property 'robot2Auto' */ @Test - public void robot2AutoTest() { + void robot2AutoTest() { // TODO: test robot2Auto } @@ -100,7 +100,7 @@ public void robot2AutoTest() { * Test the property 'robot3Auto' */ @Test - public void robot3AutoTest() { + void robot3AutoTest() { // TODO: test robot3Auto } @@ -108,7 +108,7 @@ public void robot3AutoTest() { * Test the property 'rotor1Auto' */ @Test - public void rotor1AutoTest() { + void rotor1AutoTest() { // TODO: test rotor1Auto } @@ -116,7 +116,7 @@ public void rotor1AutoTest() { * Test the property 'rotor2Auto' */ @Test - public void rotor2AutoTest() { + void rotor2AutoTest() { // TODO: test rotor2Auto } @@ -124,7 +124,7 @@ public void rotor2AutoTest() { * Test the property 'autoFuelLow' */ @Test - public void autoFuelLowTest() { + void autoFuelLowTest() { // TODO: test autoFuelLow } @@ -132,7 +132,7 @@ public void autoFuelLowTest() { * Test the property 'autoFuelHigh' */ @Test - public void autoFuelHighTest() { + void autoFuelHighTest() { // TODO: test autoFuelHigh } @@ -140,7 +140,7 @@ public void autoFuelHighTest() { * Test the property 'autoMobilityPoints' */ @Test - public void autoMobilityPointsTest() { + void autoMobilityPointsTest() { // TODO: test autoMobilityPoints } @@ -148,7 +148,7 @@ public void autoMobilityPointsTest() { * Test the property 'autoRotorPoints' */ @Test - public void autoRotorPointsTest() { + void autoRotorPointsTest() { // TODO: test autoRotorPoints } @@ -156,7 +156,7 @@ public void autoRotorPointsTest() { * Test the property 'autoFuelPoints' */ @Test - public void autoFuelPointsTest() { + void autoFuelPointsTest() { // TODO: test autoFuelPoints } @@ -164,7 +164,7 @@ public void autoFuelPointsTest() { * Test the property 'teleopFuelPoints' */ @Test - public void teleopFuelPointsTest() { + void teleopFuelPointsTest() { // TODO: test teleopFuelPoints } @@ -172,7 +172,7 @@ public void teleopFuelPointsTest() { * Test the property 'teleopFuelLow' */ @Test - public void teleopFuelLowTest() { + void teleopFuelLowTest() { // TODO: test teleopFuelLow } @@ -180,7 +180,7 @@ public void teleopFuelLowTest() { * Test the property 'teleopFuelHigh' */ @Test - public void teleopFuelHighTest() { + void teleopFuelHighTest() { // TODO: test teleopFuelHigh } @@ -188,7 +188,7 @@ public void teleopFuelHighTest() { * Test the property 'teleopRotorPoints' */ @Test - public void teleopRotorPointsTest() { + void teleopRotorPointsTest() { // TODO: test teleopRotorPoints } @@ -196,7 +196,7 @@ public void teleopRotorPointsTest() { * Test the property 'kPaRankingPointAchieved' */ @Test - public void kPaRankingPointAchievedTest() { + void kPaRankingPointAchievedTest() { // TODO: test kPaRankingPointAchieved } @@ -204,7 +204,7 @@ public void kPaRankingPointAchievedTest() { * Test the property 'teleopTakeoffPoints' */ @Test - public void teleopTakeoffPointsTest() { + void teleopTakeoffPointsTest() { // TODO: test teleopTakeoffPoints } @@ -212,7 +212,7 @@ public void teleopTakeoffPointsTest() { * Test the property 'kPaBonusPoints' */ @Test - public void kPaBonusPointsTest() { + void kPaBonusPointsTest() { // TODO: test kPaBonusPoints } @@ -220,7 +220,7 @@ public void kPaBonusPointsTest() { * Test the property 'rotorBonusPoints' */ @Test - public void rotorBonusPointsTest() { + void rotorBonusPointsTest() { // TODO: test rotorBonusPoints } @@ -228,7 +228,7 @@ public void rotorBonusPointsTest() { * Test the property 'rotor1Engaged' */ @Test - public void rotor1EngagedTest() { + void rotor1EngagedTest() { // TODO: test rotor1Engaged } @@ -236,7 +236,7 @@ public void rotor1EngagedTest() { * Test the property 'rotor2Engaged' */ @Test - public void rotor2EngagedTest() { + void rotor2EngagedTest() { // TODO: test rotor2Engaged } @@ -244,7 +244,7 @@ public void rotor2EngagedTest() { * Test the property 'rotor3Engaged' */ @Test - public void rotor3EngagedTest() { + void rotor3EngagedTest() { // TODO: test rotor3Engaged } @@ -252,7 +252,7 @@ public void rotor3EngagedTest() { * Test the property 'rotor4Engaged' */ @Test - public void rotor4EngagedTest() { + void rotor4EngagedTest() { // TODO: test rotor4Engaged } @@ -260,7 +260,7 @@ public void rotor4EngagedTest() { * Test the property 'rotorRankingPointAchieved' */ @Test - public void rotorRankingPointAchievedTest() { + void rotorRankingPointAchievedTest() { // TODO: test rotorRankingPointAchieved } @@ -268,7 +268,7 @@ public void rotorRankingPointAchievedTest() { * Test the property 'techFoulCount' */ @Test - public void techFoulCountTest() { + void techFoulCountTest() { // TODO: test techFoulCount } @@ -276,7 +276,7 @@ public void techFoulCountTest() { * Test the property 'foulCount' */ @Test - public void foulCountTest() { + void foulCountTest() { // TODO: test foulCount } @@ -284,7 +284,7 @@ public void foulCountTest() { * Test the property 'touchpadNear' */ @Test - public void touchpadNearTest() { + void touchpadNearTest() { // TODO: test touchpadNear } @@ -292,7 +292,7 @@ public void touchpadNearTest() { * Test the property 'touchpadMiddle' */ @Test - public void touchpadMiddleTest() { + void touchpadMiddleTest() { // TODO: test touchpadMiddle } @@ -300,7 +300,7 @@ public void touchpadMiddleTest() { * Test the property 'touchpadFar' */ @Test - public void touchpadFarTest() { + void touchpadFarTest() { // TODO: test touchpadFar } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017Test.java index 6e9b8c8..9e6cf30 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2017Test.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchScoreBreakdown2017Alliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2017 */ -public class MatchScoreBreakdown2017Test { +class MatchScoreBreakdown2017Test { private final MatchScoreBreakdown2017 model = new MatchScoreBreakdown2017(); /** * Model tests for MatchScoreBreakdown2017 */ @Test - public void testMatchScoreBreakdown2017() { + void testMatchScoreBreakdown2017() { // TODO: test MatchScoreBreakdown2017 } @@ -45,7 +45,7 @@ public void testMatchScoreBreakdown2017() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } @@ -53,7 +53,7 @@ public void blueTest() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018AllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018AllianceTest.java index 9c7b5c2..3097ff7 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018AllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018AllianceTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2018Alliance */ -public class MatchScoreBreakdown2018AllianceTest { +class MatchScoreBreakdown2018AllianceTest { private final MatchScoreBreakdown2018Alliance model = new MatchScoreBreakdown2018Alliance(); /** * Model tests for MatchScoreBreakdown2018Alliance */ @Test - public void testMatchScoreBreakdown2018Alliance() { + void testMatchScoreBreakdown2018Alliance() { // TODO: test MatchScoreBreakdown2018Alliance } @@ -44,7 +44,7 @@ public void testMatchScoreBreakdown2018Alliance() { * Test the property 'adjustPoints' */ @Test - public void adjustPointsTest() { + void adjustPointsTest() { // TODO: test adjustPoints } @@ -52,7 +52,7 @@ public void adjustPointsTest() { * Test the property 'autoOwnershipPoints' */ @Test - public void autoOwnershipPointsTest() { + void autoOwnershipPointsTest() { // TODO: test autoOwnershipPoints } @@ -60,7 +60,7 @@ public void autoOwnershipPointsTest() { * Test the property 'autoPoints' */ @Test - public void autoPointsTest() { + void autoPointsTest() { // TODO: test autoPoints } @@ -68,7 +68,7 @@ public void autoPointsTest() { * Test the property 'autoQuestRankingPoint' */ @Test - public void autoQuestRankingPointTest() { + void autoQuestRankingPointTest() { // TODO: test autoQuestRankingPoint } @@ -76,7 +76,7 @@ public void autoQuestRankingPointTest() { * Test the property 'autoRobot1' */ @Test - public void autoRobot1Test() { + void autoRobot1Test() { // TODO: test autoRobot1 } @@ -84,7 +84,7 @@ public void autoRobot1Test() { * Test the property 'autoRobot2' */ @Test - public void autoRobot2Test() { + void autoRobot2Test() { // TODO: test autoRobot2 } @@ -92,7 +92,7 @@ public void autoRobot2Test() { * Test the property 'autoRobot3' */ @Test - public void autoRobot3Test() { + void autoRobot3Test() { // TODO: test autoRobot3 } @@ -100,7 +100,7 @@ public void autoRobot3Test() { * Test the property 'autoRunPoints' */ @Test - public void autoRunPointsTest() { + void autoRunPointsTest() { // TODO: test autoRunPoints } @@ -108,7 +108,7 @@ public void autoRunPointsTest() { * Test the property 'autoScaleOwnershipSec' */ @Test - public void autoScaleOwnershipSecTest() { + void autoScaleOwnershipSecTest() { // TODO: test autoScaleOwnershipSec } @@ -116,7 +116,7 @@ public void autoScaleOwnershipSecTest() { * Test the property 'autoSwitchAtZero' */ @Test - public void autoSwitchAtZeroTest() { + void autoSwitchAtZeroTest() { // TODO: test autoSwitchAtZero } @@ -124,7 +124,7 @@ public void autoSwitchAtZeroTest() { * Test the property 'autoSwitchOwnershipSec' */ @Test - public void autoSwitchOwnershipSecTest() { + void autoSwitchOwnershipSecTest() { // TODO: test autoSwitchOwnershipSec } @@ -132,7 +132,7 @@ public void autoSwitchOwnershipSecTest() { * Test the property 'endgamePoints' */ @Test - public void endgamePointsTest() { + void endgamePointsTest() { // TODO: test endgamePoints } @@ -140,7 +140,7 @@ public void endgamePointsTest() { * Test the property 'endgameRobot1' */ @Test - public void endgameRobot1Test() { + void endgameRobot1Test() { // TODO: test endgameRobot1 } @@ -148,7 +148,7 @@ public void endgameRobot1Test() { * Test the property 'endgameRobot2' */ @Test - public void endgameRobot2Test() { + void endgameRobot2Test() { // TODO: test endgameRobot2 } @@ -156,7 +156,7 @@ public void endgameRobot2Test() { * Test the property 'endgameRobot3' */ @Test - public void endgameRobot3Test() { + void endgameRobot3Test() { // TODO: test endgameRobot3 } @@ -164,7 +164,7 @@ public void endgameRobot3Test() { * Test the property 'faceTheBossRankingPoint' */ @Test - public void faceTheBossRankingPointTest() { + void faceTheBossRankingPointTest() { // TODO: test faceTheBossRankingPoint } @@ -172,7 +172,7 @@ public void faceTheBossRankingPointTest() { * Test the property 'foulCount' */ @Test - public void foulCountTest() { + void foulCountTest() { // TODO: test foulCount } @@ -180,7 +180,7 @@ public void foulCountTest() { * Test the property 'foulPoints' */ @Test - public void foulPointsTest() { + void foulPointsTest() { // TODO: test foulPoints } @@ -188,7 +188,7 @@ public void foulPointsTest() { * Test the property 'rp' */ @Test - public void rpTest() { + void rpTest() { // TODO: test rp } @@ -196,7 +196,7 @@ public void rpTest() { * Test the property 'techFoulCount' */ @Test - public void techFoulCountTest() { + void techFoulCountTest() { // TODO: test techFoulCount } @@ -204,7 +204,7 @@ public void techFoulCountTest() { * Test the property 'teleopOwnershipPoints' */ @Test - public void teleopOwnershipPointsTest() { + void teleopOwnershipPointsTest() { // TODO: test teleopOwnershipPoints } @@ -212,7 +212,7 @@ public void teleopOwnershipPointsTest() { * Test the property 'teleopPoints' */ @Test - public void teleopPointsTest() { + void teleopPointsTest() { // TODO: test teleopPoints } @@ -220,7 +220,7 @@ public void teleopPointsTest() { * Test the property 'teleopScaleBoostSec' */ @Test - public void teleopScaleBoostSecTest() { + void teleopScaleBoostSecTest() { // TODO: test teleopScaleBoostSec } @@ -228,7 +228,7 @@ public void teleopScaleBoostSecTest() { * Test the property 'teleopScaleForceSec' */ @Test - public void teleopScaleForceSecTest() { + void teleopScaleForceSecTest() { // TODO: test teleopScaleForceSec } @@ -236,7 +236,7 @@ public void teleopScaleForceSecTest() { * Test the property 'teleopScaleOwnershipSec' */ @Test - public void teleopScaleOwnershipSecTest() { + void teleopScaleOwnershipSecTest() { // TODO: test teleopScaleOwnershipSec } @@ -244,7 +244,7 @@ public void teleopScaleOwnershipSecTest() { * Test the property 'teleopSwitchBoostSec' */ @Test - public void teleopSwitchBoostSecTest() { + void teleopSwitchBoostSecTest() { // TODO: test teleopSwitchBoostSec } @@ -252,7 +252,7 @@ public void teleopSwitchBoostSecTest() { * Test the property 'teleopSwitchForceSec' */ @Test - public void teleopSwitchForceSecTest() { + void teleopSwitchForceSecTest() { // TODO: test teleopSwitchForceSec } @@ -260,7 +260,7 @@ public void teleopSwitchForceSecTest() { * Test the property 'teleopSwitchOwnershipSec' */ @Test - public void teleopSwitchOwnershipSecTest() { + void teleopSwitchOwnershipSecTest() { // TODO: test teleopSwitchOwnershipSec } @@ -268,7 +268,7 @@ public void teleopSwitchOwnershipSecTest() { * Test the property 'totalPoints' */ @Test - public void totalPointsTest() { + void totalPointsTest() { // TODO: test totalPoints } @@ -276,7 +276,7 @@ public void totalPointsTest() { * Test the property 'vaultBoostPlayed' */ @Test - public void vaultBoostPlayedTest() { + void vaultBoostPlayedTest() { // TODO: test vaultBoostPlayed } @@ -284,7 +284,7 @@ public void vaultBoostPlayedTest() { * Test the property 'vaultBoostTotal' */ @Test - public void vaultBoostTotalTest() { + void vaultBoostTotalTest() { // TODO: test vaultBoostTotal } @@ -292,7 +292,7 @@ public void vaultBoostTotalTest() { * Test the property 'vaultForcePlayed' */ @Test - public void vaultForcePlayedTest() { + void vaultForcePlayedTest() { // TODO: test vaultForcePlayed } @@ -300,7 +300,7 @@ public void vaultForcePlayedTest() { * Test the property 'vaultForceTotal' */ @Test - public void vaultForceTotalTest() { + void vaultForceTotalTest() { // TODO: test vaultForceTotal } @@ -308,7 +308,7 @@ public void vaultForceTotalTest() { * Test the property 'vaultLevitatePlayed' */ @Test - public void vaultLevitatePlayedTest() { + void vaultLevitatePlayedTest() { // TODO: test vaultLevitatePlayed } @@ -316,7 +316,7 @@ public void vaultLevitatePlayedTest() { * Test the property 'vaultLevitateTotal' */ @Test - public void vaultLevitateTotalTest() { + void vaultLevitateTotalTest() { // TODO: test vaultLevitateTotal } @@ -324,7 +324,7 @@ public void vaultLevitateTotalTest() { * Test the property 'vaultPoints' */ @Test - public void vaultPointsTest() { + void vaultPointsTest() { // TODO: test vaultPoints } @@ -332,7 +332,7 @@ public void vaultPointsTest() { * Test the property 'tbaGameData' */ @Test - public void tbaGameDataTest() { + void tbaGameDataTest() { // TODO: test tbaGameData } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018Test.java index ec4c2d7..591ed0f 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2018Test.java @@ -22,22 +22,21 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchScoreBreakdown2018Alliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2018 */ -public class MatchScoreBreakdown2018Test { +class MatchScoreBreakdown2018Test { private final MatchScoreBreakdown2018 model = new MatchScoreBreakdown2018(); /** * Model tests for MatchScoreBreakdown2018 */ @Test - public void testMatchScoreBreakdown2018() { + void testMatchScoreBreakdown2018() { // TODO: test MatchScoreBreakdown2018 } @@ -45,7 +44,7 @@ public void testMatchScoreBreakdown2018() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } @@ -53,7 +52,7 @@ public void blueTest() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019AllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019AllianceTest.java index f3f3e4f..87892e6 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019AllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019AllianceTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2019Alliance */ -public class MatchScoreBreakdown2019AllianceTest { +class MatchScoreBreakdown2019AllianceTest { private final MatchScoreBreakdown2019Alliance model = new MatchScoreBreakdown2019Alliance(); /** * Model tests for MatchScoreBreakdown2019Alliance */ @Test - public void testMatchScoreBreakdown2019Alliance() { + void testMatchScoreBreakdown2019Alliance() { // TODO: test MatchScoreBreakdown2019Alliance } @@ -44,7 +44,7 @@ public void testMatchScoreBreakdown2019Alliance() { * Test the property 'adjustPoints' */ @Test - public void adjustPointsTest() { + void adjustPointsTest() { // TODO: test adjustPoints } @@ -52,7 +52,7 @@ public void adjustPointsTest() { * Test the property 'autoPoints' */ @Test - public void autoPointsTest() { + void autoPointsTest() { // TODO: test autoPoints } @@ -60,7 +60,7 @@ public void autoPointsTest() { * Test the property 'bay1' */ @Test - public void bay1Test() { + void bay1Test() { // TODO: test bay1 } @@ -68,7 +68,7 @@ public void bay1Test() { * Test the property 'bay2' */ @Test - public void bay2Test() { + void bay2Test() { // TODO: test bay2 } @@ -76,7 +76,7 @@ public void bay2Test() { * Test the property 'bay3' */ @Test - public void bay3Test() { + void bay3Test() { // TODO: test bay3 } @@ -84,7 +84,7 @@ public void bay3Test() { * Test the property 'bay4' */ @Test - public void bay4Test() { + void bay4Test() { // TODO: test bay4 } @@ -92,7 +92,7 @@ public void bay4Test() { * Test the property 'bay5' */ @Test - public void bay5Test() { + void bay5Test() { // TODO: test bay5 } @@ -100,7 +100,7 @@ public void bay5Test() { * Test the property 'bay6' */ @Test - public void bay6Test() { + void bay6Test() { // TODO: test bay6 } @@ -108,7 +108,7 @@ public void bay6Test() { * Test the property 'bay7' */ @Test - public void bay7Test() { + void bay7Test() { // TODO: test bay7 } @@ -116,7 +116,7 @@ public void bay7Test() { * Test the property 'bay8' */ @Test - public void bay8Test() { + void bay8Test() { // TODO: test bay8 } @@ -124,7 +124,7 @@ public void bay8Test() { * Test the property 'cargoPoints' */ @Test - public void cargoPointsTest() { + void cargoPointsTest() { // TODO: test cargoPoints } @@ -132,7 +132,7 @@ public void cargoPointsTest() { * Test the property 'completeRocketRankingPoint' */ @Test - public void completeRocketRankingPointTest() { + void completeRocketRankingPointTest() { // TODO: test completeRocketRankingPoint } @@ -140,7 +140,7 @@ public void completeRocketRankingPointTest() { * Test the property 'completedRocketFar' */ @Test - public void completedRocketFarTest() { + void completedRocketFarTest() { // TODO: test completedRocketFar } @@ -148,7 +148,7 @@ public void completedRocketFarTest() { * Test the property 'completedRocketNear' */ @Test - public void completedRocketNearTest() { + void completedRocketNearTest() { // TODO: test completedRocketNear } @@ -156,7 +156,7 @@ public void completedRocketNearTest() { * Test the property 'endgameRobot1' */ @Test - public void endgameRobot1Test() { + void endgameRobot1Test() { // TODO: test endgameRobot1 } @@ -164,7 +164,7 @@ public void endgameRobot1Test() { * Test the property 'endgameRobot2' */ @Test - public void endgameRobot2Test() { + void endgameRobot2Test() { // TODO: test endgameRobot2 } @@ -172,7 +172,7 @@ public void endgameRobot2Test() { * Test the property 'endgameRobot3' */ @Test - public void endgameRobot3Test() { + void endgameRobot3Test() { // TODO: test endgameRobot3 } @@ -180,7 +180,7 @@ public void endgameRobot3Test() { * Test the property 'foulCount' */ @Test - public void foulCountTest() { + void foulCountTest() { // TODO: test foulCount } @@ -188,7 +188,7 @@ public void foulCountTest() { * Test the property 'foulPoints' */ @Test - public void foulPointsTest() { + void foulPointsTest() { // TODO: test foulPoints } @@ -196,7 +196,7 @@ public void foulPointsTest() { * Test the property 'habClimbPoints' */ @Test - public void habClimbPointsTest() { + void habClimbPointsTest() { // TODO: test habClimbPoints } @@ -204,7 +204,7 @@ public void habClimbPointsTest() { * Test the property 'habDockingRankingPoint' */ @Test - public void habDockingRankingPointTest() { + void habDockingRankingPointTest() { // TODO: test habDockingRankingPoint } @@ -212,7 +212,7 @@ public void habDockingRankingPointTest() { * Test the property 'habLineRobot1' */ @Test - public void habLineRobot1Test() { + void habLineRobot1Test() { // TODO: test habLineRobot1 } @@ -220,7 +220,7 @@ public void habLineRobot1Test() { * Test the property 'habLineRobot2' */ @Test - public void habLineRobot2Test() { + void habLineRobot2Test() { // TODO: test habLineRobot2 } @@ -228,7 +228,7 @@ public void habLineRobot2Test() { * Test the property 'habLineRobot3' */ @Test - public void habLineRobot3Test() { + void habLineRobot3Test() { // TODO: test habLineRobot3 } @@ -236,7 +236,7 @@ public void habLineRobot3Test() { * Test the property 'hatchPanelPoints' */ @Test - public void hatchPanelPointsTest() { + void hatchPanelPointsTest() { // TODO: test hatchPanelPoints } @@ -244,7 +244,7 @@ public void hatchPanelPointsTest() { * Test the property 'lowLeftRocketFar' */ @Test - public void lowLeftRocketFarTest() { + void lowLeftRocketFarTest() { // TODO: test lowLeftRocketFar } @@ -252,7 +252,7 @@ public void lowLeftRocketFarTest() { * Test the property 'lowLeftRocketNear' */ @Test - public void lowLeftRocketNearTest() { + void lowLeftRocketNearTest() { // TODO: test lowLeftRocketNear } @@ -260,7 +260,7 @@ public void lowLeftRocketNearTest() { * Test the property 'lowRightRocketFar' */ @Test - public void lowRightRocketFarTest() { + void lowRightRocketFarTest() { // TODO: test lowRightRocketFar } @@ -268,7 +268,7 @@ public void lowRightRocketFarTest() { * Test the property 'lowRightRocketNear' */ @Test - public void lowRightRocketNearTest() { + void lowRightRocketNearTest() { // TODO: test lowRightRocketNear } @@ -276,7 +276,7 @@ public void lowRightRocketNearTest() { * Test the property 'midLeftRocketFar' */ @Test - public void midLeftRocketFarTest() { + void midLeftRocketFarTest() { // TODO: test midLeftRocketFar } @@ -284,7 +284,7 @@ public void midLeftRocketFarTest() { * Test the property 'midLeftRocketNear' */ @Test - public void midLeftRocketNearTest() { + void midLeftRocketNearTest() { // TODO: test midLeftRocketNear } @@ -292,7 +292,7 @@ public void midLeftRocketNearTest() { * Test the property 'midRightRocketFar' */ @Test - public void midRightRocketFarTest() { + void midRightRocketFarTest() { // TODO: test midRightRocketFar } @@ -300,7 +300,7 @@ public void midRightRocketFarTest() { * Test the property 'midRightRocketNear' */ @Test - public void midRightRocketNearTest() { + void midRightRocketNearTest() { // TODO: test midRightRocketNear } @@ -308,7 +308,7 @@ public void midRightRocketNearTest() { * Test the property 'preMatchBay1' */ @Test - public void preMatchBay1Test() { + void preMatchBay1Test() { // TODO: test preMatchBay1 } @@ -316,7 +316,7 @@ public void preMatchBay1Test() { * Test the property 'preMatchBay2' */ @Test - public void preMatchBay2Test() { + void preMatchBay2Test() { // TODO: test preMatchBay2 } @@ -324,7 +324,7 @@ public void preMatchBay2Test() { * Test the property 'preMatchBay3' */ @Test - public void preMatchBay3Test() { + void preMatchBay3Test() { // TODO: test preMatchBay3 } @@ -332,7 +332,7 @@ public void preMatchBay3Test() { * Test the property 'preMatchBay6' */ @Test - public void preMatchBay6Test() { + void preMatchBay6Test() { // TODO: test preMatchBay6 } @@ -340,7 +340,7 @@ public void preMatchBay6Test() { * Test the property 'preMatchBay7' */ @Test - public void preMatchBay7Test() { + void preMatchBay7Test() { // TODO: test preMatchBay7 } @@ -348,7 +348,7 @@ public void preMatchBay7Test() { * Test the property 'preMatchBay8' */ @Test - public void preMatchBay8Test() { + void preMatchBay8Test() { // TODO: test preMatchBay8 } @@ -356,7 +356,7 @@ public void preMatchBay8Test() { * Test the property 'preMatchLevelRobot1' */ @Test - public void preMatchLevelRobot1Test() { + void preMatchLevelRobot1Test() { // TODO: test preMatchLevelRobot1 } @@ -364,7 +364,7 @@ public void preMatchLevelRobot1Test() { * Test the property 'preMatchLevelRobot2' */ @Test - public void preMatchLevelRobot2Test() { + void preMatchLevelRobot2Test() { // TODO: test preMatchLevelRobot2 } @@ -372,7 +372,7 @@ public void preMatchLevelRobot2Test() { * Test the property 'preMatchLevelRobot3' */ @Test - public void preMatchLevelRobot3Test() { + void preMatchLevelRobot3Test() { // TODO: test preMatchLevelRobot3 } @@ -380,7 +380,7 @@ public void preMatchLevelRobot3Test() { * Test the property 'rp' */ @Test - public void rpTest() { + void rpTest() { // TODO: test rp } @@ -388,7 +388,7 @@ public void rpTest() { * Test the property 'sandStormBonusPoints' */ @Test - public void sandStormBonusPointsTest() { + void sandStormBonusPointsTest() { // TODO: test sandStormBonusPoints } @@ -396,7 +396,7 @@ public void sandStormBonusPointsTest() { * Test the property 'techFoulCount' */ @Test - public void techFoulCountTest() { + void techFoulCountTest() { // TODO: test techFoulCount } @@ -404,7 +404,7 @@ public void techFoulCountTest() { * Test the property 'teleopPoints' */ @Test - public void teleopPointsTest() { + void teleopPointsTest() { // TODO: test teleopPoints } @@ -412,7 +412,7 @@ public void teleopPointsTest() { * Test the property 'topLeftRocketFar' */ @Test - public void topLeftRocketFarTest() { + void topLeftRocketFarTest() { // TODO: test topLeftRocketFar } @@ -420,7 +420,7 @@ public void topLeftRocketFarTest() { * Test the property 'topLeftRocketNear' */ @Test - public void topLeftRocketNearTest() { + void topLeftRocketNearTest() { // TODO: test topLeftRocketNear } @@ -428,7 +428,7 @@ public void topLeftRocketNearTest() { * Test the property 'topRightRocketFar' */ @Test - public void topRightRocketFarTest() { + void topRightRocketFarTest() { // TODO: test topRightRocketFar } @@ -436,7 +436,7 @@ public void topRightRocketFarTest() { * Test the property 'topRightRocketNear' */ @Test - public void topRightRocketNearTest() { + void topRightRocketNearTest() { // TODO: test topRightRocketNear } @@ -444,7 +444,7 @@ public void topRightRocketNearTest() { * Test the property 'totalPoints' */ @Test - public void totalPointsTest() { + void totalPointsTest() { // TODO: test totalPoints } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019Test.java index e42c545..eef7ad4 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2019Test.java @@ -22,22 +22,21 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchScoreBreakdown2019Alliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2019 */ -public class MatchScoreBreakdown2019Test { +class MatchScoreBreakdown2019Test { private final MatchScoreBreakdown2019 model = new MatchScoreBreakdown2019(); /** * Model tests for MatchScoreBreakdown2019 */ @Test - public void testMatchScoreBreakdown2019() { + void testMatchScoreBreakdown2019() { // TODO: test MatchScoreBreakdown2019 } @@ -45,7 +44,7 @@ public void testMatchScoreBreakdown2019() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } @@ -53,7 +52,7 @@ public void blueTest() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020AllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020AllianceTest.java index 0c10ca1..e9d24e0 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020AllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020AllianceTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2020Alliance */ -public class MatchScoreBreakdown2020AllianceTest { +class MatchScoreBreakdown2020AllianceTest { private final MatchScoreBreakdown2020Alliance model = new MatchScoreBreakdown2020Alliance(); /** * Model tests for MatchScoreBreakdown2020Alliance */ @Test - public void testMatchScoreBreakdown2020Alliance() { + void testMatchScoreBreakdown2020Alliance() { // TODO: test MatchScoreBreakdown2020Alliance } @@ -44,7 +44,7 @@ public void testMatchScoreBreakdown2020Alliance() { * Test the property 'initLineRobot1' */ @Test - public void initLineRobot1Test() { + void initLineRobot1Test() { // TODO: test initLineRobot1 } @@ -52,7 +52,7 @@ public void initLineRobot1Test() { * Test the property 'endgameRobot1' */ @Test - public void endgameRobot1Test() { + void endgameRobot1Test() { // TODO: test endgameRobot1 } @@ -60,7 +60,7 @@ public void endgameRobot1Test() { * Test the property 'initLineRobot2' */ @Test - public void initLineRobot2Test() { + void initLineRobot2Test() { // TODO: test initLineRobot2 } @@ -68,7 +68,7 @@ public void initLineRobot2Test() { * Test the property 'endgameRobot2' */ @Test - public void endgameRobot2Test() { + void endgameRobot2Test() { // TODO: test endgameRobot2 } @@ -76,7 +76,7 @@ public void endgameRobot2Test() { * Test the property 'initLineRobot3' */ @Test - public void initLineRobot3Test() { + void initLineRobot3Test() { // TODO: test initLineRobot3 } @@ -84,7 +84,7 @@ public void initLineRobot3Test() { * Test the property 'endgameRobot3' */ @Test - public void endgameRobot3Test() { + void endgameRobot3Test() { // TODO: test endgameRobot3 } @@ -92,7 +92,7 @@ public void endgameRobot3Test() { * Test the property 'autoCellsBottom' */ @Test - public void autoCellsBottomTest() { + void autoCellsBottomTest() { // TODO: test autoCellsBottom } @@ -100,7 +100,7 @@ public void autoCellsBottomTest() { * Test the property 'autoCellsOuter' */ @Test - public void autoCellsOuterTest() { + void autoCellsOuterTest() { // TODO: test autoCellsOuter } @@ -108,7 +108,7 @@ public void autoCellsOuterTest() { * Test the property 'autoCellsInner' */ @Test - public void autoCellsInnerTest() { + void autoCellsInnerTest() { // TODO: test autoCellsInner } @@ -116,7 +116,7 @@ public void autoCellsInnerTest() { * Test the property 'teleopCellsBottom' */ @Test - public void teleopCellsBottomTest() { + void teleopCellsBottomTest() { // TODO: test teleopCellsBottom } @@ -124,7 +124,7 @@ public void teleopCellsBottomTest() { * Test the property 'teleopCellsOuter' */ @Test - public void teleopCellsOuterTest() { + void teleopCellsOuterTest() { // TODO: test teleopCellsOuter } @@ -132,7 +132,7 @@ public void teleopCellsOuterTest() { * Test the property 'teleopCellsInner' */ @Test - public void teleopCellsInnerTest() { + void teleopCellsInnerTest() { // TODO: test teleopCellsInner } @@ -140,7 +140,7 @@ public void teleopCellsInnerTest() { * Test the property 'stage1Activated' */ @Test - public void stage1ActivatedTest() { + void stage1ActivatedTest() { // TODO: test stage1Activated } @@ -148,7 +148,7 @@ public void stage1ActivatedTest() { * Test the property 'stage2Activated' */ @Test - public void stage2ActivatedTest() { + void stage2ActivatedTest() { // TODO: test stage2Activated } @@ -156,7 +156,7 @@ public void stage2ActivatedTest() { * Test the property 'stage3Activated' */ @Test - public void stage3ActivatedTest() { + void stage3ActivatedTest() { // TODO: test stage3Activated } @@ -164,7 +164,7 @@ public void stage3ActivatedTest() { * Test the property 'stage3TargetColor' */ @Test - public void stage3TargetColorTest() { + void stage3TargetColorTest() { // TODO: test stage3TargetColor } @@ -172,7 +172,7 @@ public void stage3TargetColorTest() { * Test the property 'endgameRungIsLevel' */ @Test - public void endgameRungIsLevelTest() { + void endgameRungIsLevelTest() { // TODO: test endgameRungIsLevel } @@ -180,7 +180,7 @@ public void endgameRungIsLevelTest() { * Test the property 'autoInitLinePoints' */ @Test - public void autoInitLinePointsTest() { + void autoInitLinePointsTest() { // TODO: test autoInitLinePoints } @@ -188,7 +188,7 @@ public void autoInitLinePointsTest() { * Test the property 'autoCellPoints' */ @Test - public void autoCellPointsTest() { + void autoCellPointsTest() { // TODO: test autoCellPoints } @@ -196,7 +196,7 @@ public void autoCellPointsTest() { * Test the property 'autoPoints' */ @Test - public void autoPointsTest() { + void autoPointsTest() { // TODO: test autoPoints } @@ -204,7 +204,7 @@ public void autoPointsTest() { * Test the property 'teleopCellPoints' */ @Test - public void teleopCellPointsTest() { + void teleopCellPointsTest() { // TODO: test teleopCellPoints } @@ -212,7 +212,7 @@ public void teleopCellPointsTest() { * Test the property 'controlPanelPoints' */ @Test - public void controlPanelPointsTest() { + void controlPanelPointsTest() { // TODO: test controlPanelPoints } @@ -220,7 +220,7 @@ public void controlPanelPointsTest() { * Test the property 'endgamePoints' */ @Test - public void endgamePointsTest() { + void endgamePointsTest() { // TODO: test endgamePoints } @@ -228,7 +228,7 @@ public void endgamePointsTest() { * Test the property 'teleopPoints' */ @Test - public void teleopPointsTest() { + void teleopPointsTest() { // TODO: test teleopPoints } @@ -236,7 +236,7 @@ public void teleopPointsTest() { * Test the property 'shieldOperationalRankingPoint' */ @Test - public void shieldOperationalRankingPointTest() { + void shieldOperationalRankingPointTest() { // TODO: test shieldOperationalRankingPoint } @@ -244,7 +244,7 @@ public void shieldOperationalRankingPointTest() { * Test the property 'shieldEnergizedRankingPoint' */ @Test - public void shieldEnergizedRankingPointTest() { + void shieldEnergizedRankingPointTest() { // TODO: test shieldEnergizedRankingPoint } @@ -252,7 +252,7 @@ public void shieldEnergizedRankingPointTest() { * Test the property 'tbaShieldEnergizedRankingPointFromFoul' */ @Test - public void tbaShieldEnergizedRankingPointFromFoulTest() { + void tbaShieldEnergizedRankingPointFromFoulTest() { // TODO: test tbaShieldEnergizedRankingPointFromFoul } @@ -260,7 +260,7 @@ public void tbaShieldEnergizedRankingPointFromFoulTest() { * Test the property 'tbaNumRobotsHanging' */ @Test - public void tbaNumRobotsHangingTest() { + void tbaNumRobotsHangingTest() { // TODO: test tbaNumRobotsHanging } @@ -268,7 +268,7 @@ public void tbaNumRobotsHangingTest() { * Test the property 'foulCount' */ @Test - public void foulCountTest() { + void foulCountTest() { // TODO: test foulCount } @@ -276,7 +276,7 @@ public void foulCountTest() { * Test the property 'techFoulCount' */ @Test - public void techFoulCountTest() { + void techFoulCountTest() { // TODO: test techFoulCount } @@ -284,7 +284,7 @@ public void techFoulCountTest() { * Test the property 'adjustPoints' */ @Test - public void adjustPointsTest() { + void adjustPointsTest() { // TODO: test adjustPoints } @@ -292,7 +292,7 @@ public void adjustPointsTest() { * Test the property 'foulPoints' */ @Test - public void foulPointsTest() { + void foulPointsTest() { // TODO: test foulPoints } @@ -300,7 +300,7 @@ public void foulPointsTest() { * Test the property 'rp' */ @Test - public void rpTest() { + void rpTest() { // TODO: test rp } @@ -308,7 +308,7 @@ public void rpTest() { * Test the property 'totalPoints' */ @Test - public void totalPointsTest() { + void totalPointsTest() { // TODO: test totalPoints } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020Test.java index f009e6f..8c379d1 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchScoreBreakdown2020Test.java @@ -22,22 +22,21 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchScoreBreakdown2020Alliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + +import org.junit.jupiter.api.Test; /** * Model tests for MatchScoreBreakdown2020 */ -public class MatchScoreBreakdown2020Test { +class MatchScoreBreakdown2020Test { private final MatchScoreBreakdown2020 model = new MatchScoreBreakdown2020(); /** * Model tests for MatchScoreBreakdown2020 */ @Test - public void testMatchScoreBreakdown2020() { + void testMatchScoreBreakdown2020() { // TODO: test MatchScoreBreakdown2020 } @@ -45,7 +44,7 @@ public void testMatchScoreBreakdown2020() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } @@ -53,7 +52,7 @@ public void blueTest() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleAlliancesTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleAlliancesTest.java index a88c434..b1c3fde 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleAlliancesTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleAlliancesTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchAlliance; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchSimpleAlliances */ -public class MatchSimpleAlliancesTest { +class MatchSimpleAlliancesTest { private final MatchSimpleAlliances model = new MatchSimpleAlliances(); /** * Model tests for MatchSimpleAlliances */ @Test - public void testMatchSimpleAlliances() { + void testMatchSimpleAlliances() { // TODO: test MatchSimpleAlliances } @@ -45,7 +45,7 @@ public void testMatchSimpleAlliances() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } @@ -53,7 +53,7 @@ public void redTest() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleTest.java index b951b17..cc66a9b 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchSimpleTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.MatchSimpleAlliances; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchSimple */ -public class MatchSimpleTest { +class MatchSimpleTest { private final MatchSimple model = new MatchSimple(); /** * Model tests for MatchSimple */ @Test - public void testMatchSimple() { + void testMatchSimple() { // TODO: test MatchSimple } @@ -45,7 +45,7 @@ public void testMatchSimple() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -53,7 +53,7 @@ public void keyTest() { * Test the property 'compLevel' */ @Test - public void compLevelTest() { + void compLevelTest() { // TODO: test compLevel } @@ -61,7 +61,7 @@ public void compLevelTest() { * Test the property 'setNumber' */ @Test - public void setNumberTest() { + void setNumberTest() { // TODO: test setNumber } @@ -69,7 +69,7 @@ public void setNumberTest() { * Test the property 'matchNumber' */ @Test - public void matchNumberTest() { + void matchNumberTest() { // TODO: test matchNumber } @@ -77,7 +77,7 @@ public void matchNumberTest() { * Test the property 'alliances' */ @Test - public void alliancesTest() { + void alliancesTest() { // TODO: test alliances } @@ -85,7 +85,7 @@ public void alliancesTest() { * Test the property 'winningAlliance' */ @Test - public void winningAllianceTest() { + void winningAllianceTest() { // TODO: test winningAlliance } @@ -93,7 +93,7 @@ public void winningAllianceTest() { * Test the property 'eventKey' */ @Test - public void eventKeyTest() { + void eventKeyTest() { // TODO: test eventKey } @@ -101,7 +101,7 @@ public void eventKeyTest() { * Test the property 'time' */ @Test - public void timeTest() { + void timeTest() { // TODO: test time } @@ -109,7 +109,7 @@ public void timeTest() { * Test the property 'predictedTime' */ @Test - public void predictedTimeTest() { + void predictedTimeTest() { // TODO: test predictedTime } @@ -117,7 +117,7 @@ public void predictedTimeTest() { * Test the property 'actualTime' */ @Test - public void actualTimeTest() { + void actualTimeTest() { // TODO: test actualTime } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTest.java index 5bd4ddc..ddfc4cf 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTest.java @@ -25,22 +25,22 @@ import java.util.List; import net.thefletcher.tbaapi.v3client.model.MatchSimpleAlliances; import net.thefletcher.tbaapi.v3client.model.MatchVideos; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Match */ -public class MatchTest { +class MatchTest { private final Match model = new Match(); /** * Model tests for Match */ @Test - public void testMatch() { + void testMatch() { // TODO: test Match } @@ -48,7 +48,7 @@ public void testMatch() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -56,7 +56,7 @@ public void keyTest() { * Test the property 'compLevel' */ @Test - public void compLevelTest() { + void compLevelTest() { // TODO: test compLevel } @@ -64,7 +64,7 @@ public void compLevelTest() { * Test the property 'setNumber' */ @Test - public void setNumberTest() { + void setNumberTest() { // TODO: test setNumber } @@ -72,7 +72,7 @@ public void setNumberTest() { * Test the property 'matchNumber' */ @Test - public void matchNumberTest() { + void matchNumberTest() { // TODO: test matchNumber } @@ -80,7 +80,7 @@ public void matchNumberTest() { * Test the property 'alliances' */ @Test - public void alliancesTest() { + void alliancesTest() { // TODO: test alliances } @@ -88,7 +88,7 @@ public void alliancesTest() { * Test the property 'winningAlliance' */ @Test - public void winningAllianceTest() { + void winningAllianceTest() { // TODO: test winningAlliance } @@ -96,7 +96,7 @@ public void winningAllianceTest() { * Test the property 'eventKey' */ @Test - public void eventKeyTest() { + void eventKeyTest() { // TODO: test eventKey } @@ -104,7 +104,7 @@ public void eventKeyTest() { * Test the property 'time' */ @Test - public void timeTest() { + void timeTest() { // TODO: test time } @@ -112,7 +112,7 @@ public void timeTest() { * Test the property 'actualTime' */ @Test - public void actualTimeTest() { + void actualTimeTest() { // TODO: test actualTime } @@ -120,7 +120,7 @@ public void actualTimeTest() { * Test the property 'predictedTime' */ @Test - public void predictedTimeTest() { + void predictedTimeTest() { // TODO: test predictedTime } @@ -128,7 +128,7 @@ public void predictedTimeTest() { * Test the property 'postResultTime' */ @Test - public void postResultTimeTest() { + void postResultTimeTest() { // TODO: test postResultTime } @@ -136,7 +136,7 @@ public void postResultTimeTest() { * Test the property 'scoreBreakdown' */ @Test - public void scoreBreakdownTest() { + void scoreBreakdownTest() { // TODO: test scoreBreakdown } @@ -144,7 +144,7 @@ public void scoreBreakdownTest() { * Test the property 'videos' */ @Test - public void videosTest() { + void videosTest() { // TODO: test videos } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTimeseries2018Test.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTimeseries2018Test.java index 065c0f0..6d3ccf4 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTimeseries2018Test.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchTimeseries2018Test.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchTimeseries2018 */ -public class MatchTimeseries2018Test { +class MatchTimeseries2018Test { private final MatchTimeseries2018 model = new MatchTimeseries2018(); /** * Model tests for MatchTimeseries2018 */ @Test - public void testMatchTimeseries2018() { + void testMatchTimeseries2018() { // TODO: test MatchTimeseries2018 } @@ -44,7 +44,7 @@ public void testMatchTimeseries2018() { * Test the property 'eventKey' */ @Test - public void eventKeyTest() { + void eventKeyTest() { // TODO: test eventKey } @@ -52,7 +52,7 @@ public void eventKeyTest() { * Test the property 'matchId' */ @Test - public void matchIdTest() { + void matchIdTest() { // TODO: test matchId } @@ -60,7 +60,7 @@ public void matchIdTest() { * Test the property 'mode' */ @Test - public void modeTest() { + void modeTest() { // TODO: test mode } @@ -68,7 +68,7 @@ public void modeTest() { * Test the property 'play' */ @Test - public void playTest() { + void playTest() { // TODO: test play } @@ -76,7 +76,7 @@ public void playTest() { * Test the property 'timeRemaining' */ @Test - public void timeRemainingTest() { + void timeRemainingTest() { // TODO: test timeRemaining } @@ -84,7 +84,7 @@ public void timeRemainingTest() { * Test the property 'blueAutoQuest' */ @Test - public void blueAutoQuestTest() { + void blueAutoQuestTest() { // TODO: test blueAutoQuest } @@ -92,7 +92,7 @@ public void blueAutoQuestTest() { * Test the property 'blueBoostCount' */ @Test - public void blueBoostCountTest() { + void blueBoostCountTest() { // TODO: test blueBoostCount } @@ -100,7 +100,7 @@ public void blueBoostCountTest() { * Test the property 'blueBoostPlayed' */ @Test - public void blueBoostPlayedTest() { + void blueBoostPlayedTest() { // TODO: test blueBoostPlayed } @@ -108,7 +108,7 @@ public void blueBoostPlayedTest() { * Test the property 'blueCurrentPowerup' */ @Test - public void blueCurrentPowerupTest() { + void blueCurrentPowerupTest() { // TODO: test blueCurrentPowerup } @@ -116,7 +116,7 @@ public void blueCurrentPowerupTest() { * Test the property 'blueFaceTheBoss' */ @Test - public void blueFaceTheBossTest() { + void blueFaceTheBossTest() { // TODO: test blueFaceTheBoss } @@ -124,7 +124,7 @@ public void blueFaceTheBossTest() { * Test the property 'blueForceCount' */ @Test - public void blueForceCountTest() { + void blueForceCountTest() { // TODO: test blueForceCount } @@ -132,7 +132,7 @@ public void blueForceCountTest() { * Test the property 'blueForcePlayed' */ @Test - public void blueForcePlayedTest() { + void blueForcePlayedTest() { // TODO: test blueForcePlayed } @@ -140,7 +140,7 @@ public void blueForcePlayedTest() { * Test the property 'blueLevitateCount' */ @Test - public void blueLevitateCountTest() { + void blueLevitateCountTest() { // TODO: test blueLevitateCount } @@ -148,7 +148,7 @@ public void blueLevitateCountTest() { * Test the property 'blueLevitatePlayed' */ @Test - public void blueLevitatePlayedTest() { + void blueLevitatePlayedTest() { // TODO: test blueLevitatePlayed } @@ -156,7 +156,7 @@ public void blueLevitatePlayedTest() { * Test the property 'bluePowerupTimeRemaining' */ @Test - public void bluePowerupTimeRemainingTest() { + void bluePowerupTimeRemainingTest() { // TODO: test bluePowerupTimeRemaining } @@ -164,7 +164,7 @@ public void bluePowerupTimeRemainingTest() { * Test the property 'blueScaleOwned' */ @Test - public void blueScaleOwnedTest() { + void blueScaleOwnedTest() { // TODO: test blueScaleOwned } @@ -172,7 +172,7 @@ public void blueScaleOwnedTest() { * Test the property 'blueScore' */ @Test - public void blueScoreTest() { + void blueScoreTest() { // TODO: test blueScore } @@ -180,7 +180,7 @@ public void blueScoreTest() { * Test the property 'blueSwitchOwned' */ @Test - public void blueSwitchOwnedTest() { + void blueSwitchOwnedTest() { // TODO: test blueSwitchOwned } @@ -188,7 +188,7 @@ public void blueSwitchOwnedTest() { * Test the property 'redAutoQuest' */ @Test - public void redAutoQuestTest() { + void redAutoQuestTest() { // TODO: test redAutoQuest } @@ -196,7 +196,7 @@ public void redAutoQuestTest() { * Test the property 'redBoostCount' */ @Test - public void redBoostCountTest() { + void redBoostCountTest() { // TODO: test redBoostCount } @@ -204,7 +204,7 @@ public void redBoostCountTest() { * Test the property 'redBoostPlayed' */ @Test - public void redBoostPlayedTest() { + void redBoostPlayedTest() { // TODO: test redBoostPlayed } @@ -212,7 +212,7 @@ public void redBoostPlayedTest() { * Test the property 'redCurrentPowerup' */ @Test - public void redCurrentPowerupTest() { + void redCurrentPowerupTest() { // TODO: test redCurrentPowerup } @@ -220,7 +220,7 @@ public void redCurrentPowerupTest() { * Test the property 'redFaceTheBoss' */ @Test - public void redFaceTheBossTest() { + void redFaceTheBossTest() { // TODO: test redFaceTheBoss } @@ -228,7 +228,7 @@ public void redFaceTheBossTest() { * Test the property 'redForceCount' */ @Test - public void redForceCountTest() { + void redForceCountTest() { // TODO: test redForceCount } @@ -236,7 +236,7 @@ public void redForceCountTest() { * Test the property 'redForcePlayed' */ @Test - public void redForcePlayedTest() { + void redForcePlayedTest() { // TODO: test redForcePlayed } @@ -244,7 +244,7 @@ public void redForcePlayedTest() { * Test the property 'redLevitateCount' */ @Test - public void redLevitateCountTest() { + void redLevitateCountTest() { // TODO: test redLevitateCount } @@ -252,7 +252,7 @@ public void redLevitateCountTest() { * Test the property 'redLevitatePlayed' */ @Test - public void redLevitatePlayedTest() { + void redLevitatePlayedTest() { // TODO: test redLevitatePlayed } @@ -260,7 +260,7 @@ public void redLevitatePlayedTest() { * Test the property 'redPowerupTimeRemaining' */ @Test - public void redPowerupTimeRemainingTest() { + void redPowerupTimeRemainingTest() { // TODO: test redPowerupTimeRemaining } @@ -268,7 +268,7 @@ public void redPowerupTimeRemainingTest() { * Test the property 'redScaleOwned' */ @Test - public void redScaleOwnedTest() { + void redScaleOwnedTest() { // TODO: test redScaleOwned } @@ -276,7 +276,7 @@ public void redScaleOwnedTest() { * Test the property 'redScore' */ @Test - public void redScoreTest() { + void redScoreTest() { // TODO: test redScore } @@ -284,7 +284,7 @@ public void redScoreTest() { * Test the property 'redSwitchOwned' */ @Test - public void redSwitchOwnedTest() { + void redSwitchOwnedTest() { // TODO: test redSwitchOwned } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchVideosTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchVideosTest.java index 7c254d3..40d04aa 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchVideosTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MatchVideosTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for MatchVideos */ -public class MatchVideosTest { +class MatchVideosTest { private final MatchVideos model = new MatchVideos(); /** * Model tests for MatchVideos */ @Test - public void testMatchVideos() { + void testMatchVideos() { // TODO: test MatchVideos } @@ -44,7 +44,7 @@ public void testMatchVideos() { * Test the property 'type' */ @Test - public void typeTest() { + void typeTest() { // TODO: test type } @@ -52,7 +52,7 @@ public void typeTest() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/MediaTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/MediaTest.java index 1883fc1..bf871d6 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/MediaTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/MediaTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Media */ -public class MediaTest { +class MediaTest { private final Media model = new Media(); /** * Model tests for Media */ @Test - public void testMedia() { + void testMedia() { // TODO: test Media } @@ -44,7 +44,7 @@ public void testMedia() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -52,7 +52,7 @@ public void keyTest() { * Test the property 'type' */ @Test - public void typeTest() { + void typeTest() { // TODO: test type } @@ -60,7 +60,7 @@ public void typeTest() { * Test the property 'foreignKey' */ @Test - public void foreignKeyTest() { + void foreignKeyTest() { // TODO: test foreignKey } @@ -68,7 +68,7 @@ public void foreignKeyTest() { * Test the property 'details' */ @Test - public void detailsTest() { + void detailsTest() { // TODO: test details } @@ -76,7 +76,7 @@ public void detailsTest() { * Test the property 'preferred' */ @Test - public void preferredTest() { + void preferredTest() { // TODO: test preferred } @@ -84,7 +84,7 @@ public void preferredTest() { * Test the property 'directUrl' */ @Test - public void directUrlTest() { + void directUrlTest() { // TODO: test directUrl } @@ -92,7 +92,7 @@ public void directUrlTest() { * Test the property 'viewUrl' */ @Test - public void viewUrlTest() { + void viewUrlTest() { // TODO: test viewUrl } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceBackupTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceBackupTest.java index a5d2973..8546952 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceBackupTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceBackupTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatusAllianceBackup */ -public class TeamEventStatusAllianceBackupTest { +class TeamEventStatusAllianceBackupTest { private final TeamEventStatusAllianceBackup model = new TeamEventStatusAllianceBackup(); /** * Model tests for TeamEventStatusAllianceBackup */ @Test - public void testTeamEventStatusAllianceBackup() { + void testTeamEventStatusAllianceBackup() { // TODO: test TeamEventStatusAllianceBackup } @@ -44,7 +44,7 @@ public void testTeamEventStatusAllianceBackup() { * Test the property 'out' */ @Test - public void outTest() { + void outTest() { // TODO: test out } @@ -52,7 +52,7 @@ public void outTest() { * Test the property 'in' */ @Test - public void inTest() { + void inTest() { // TODO: test in } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceTest.java index 476ac1b..2f5de27 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusAllianceTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.TeamEventStatusAllianceBackup; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatusAlliance */ -public class TeamEventStatusAllianceTest { +class TeamEventStatusAllianceTest { private final TeamEventStatusAlliance model = new TeamEventStatusAlliance(); /** * Model tests for TeamEventStatusAlliance */ @Test - public void testTeamEventStatusAlliance() { + void testTeamEventStatusAlliance() { // TODO: test TeamEventStatusAlliance } @@ -45,7 +45,7 @@ public void testTeamEventStatusAlliance() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -53,7 +53,7 @@ public void nameTest() { * Test the property 'number' */ @Test - public void numberTest() { + void numberTest() { // TODO: test number } @@ -61,7 +61,7 @@ public void numberTest() { * Test the property 'backup' */ @Test - public void backupTest() { + void backupTest() { // TODO: test backup } @@ -69,7 +69,7 @@ public void backupTest() { * Test the property 'pick' */ @Test - public void pickTest() { + void pickTest() { // TODO: test pick } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusPlayoffTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusPlayoffTest.java index 7713eb5..0391035 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusPlayoffTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusPlayoffTest.java @@ -22,22 +22,22 @@ import io.swagger.annotations.ApiModelProperty; import java.io.IOException; import net.thefletcher.tbaapi.v3client.model.WLTRecord; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatusPlayoff */ -public class TeamEventStatusPlayoffTest { +class TeamEventStatusPlayoffTest { private final TeamEventStatusPlayoff model = new TeamEventStatusPlayoff(); /** * Model tests for TeamEventStatusPlayoff */ @Test - public void testTeamEventStatusPlayoff() { + void testTeamEventStatusPlayoff() { // TODO: test TeamEventStatusPlayoff } @@ -45,7 +45,7 @@ public void testTeamEventStatusPlayoff() { * Test the property 'level' */ @Test - public void levelTest() { + void levelTest() { // TODO: test level } @@ -53,7 +53,7 @@ public void levelTest() { * Test the property 'currentLevelRecord' */ @Test - public void currentLevelRecordTest() { + void currentLevelRecordTest() { // TODO: test currentLevelRecord } @@ -61,7 +61,7 @@ public void currentLevelRecordTest() { * Test the property 'record' */ @Test - public void recordTest() { + void recordTest() { // TODO: test record } @@ -69,7 +69,7 @@ public void recordTest() { * Test the property 'status' */ @Test - public void statusTest() { + void statusTest() { // TODO: test status } @@ -77,7 +77,7 @@ public void statusTest() { * Test the property 'playoffAverage' */ @Test - public void playoffAverageTest() { + void playoffAverageTest() { // TODO: test playoffAverage } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankRankingTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankRankingTest.java index b9b8c60..d85edc1 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankRankingTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankRankingTest.java @@ -25,22 +25,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.WLTRecord; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatusRankRanking */ -public class TeamEventStatusRankRankingTest { +class TeamEventStatusRankRankingTest { private final TeamEventStatusRankRanking model = new TeamEventStatusRankRanking(); /** * Model tests for TeamEventStatusRankRanking */ @Test - public void testTeamEventStatusRankRanking() { + void testTeamEventStatusRankRanking() { // TODO: test TeamEventStatusRankRanking } @@ -48,7 +48,7 @@ public void testTeamEventStatusRankRanking() { * Test the property 'matchesPlayed' */ @Test - public void matchesPlayedTest() { + void matchesPlayedTest() { // TODO: test matchesPlayed } @@ -56,7 +56,7 @@ public void matchesPlayedTest() { * Test the property 'qualAverage' */ @Test - public void qualAverageTest() { + void qualAverageTest() { // TODO: test qualAverage } @@ -64,7 +64,7 @@ public void qualAverageTest() { * Test the property 'sortOrders' */ @Test - public void sortOrdersTest() { + void sortOrdersTest() { // TODO: test sortOrders } @@ -72,7 +72,7 @@ public void sortOrdersTest() { * Test the property 'record' */ @Test - public void recordTest() { + void recordTest() { // TODO: test record } @@ -80,7 +80,7 @@ public void recordTest() { * Test the property 'rank' */ @Test - public void rankTest() { + void rankTest() { // TODO: test rank } @@ -88,7 +88,7 @@ public void rankTest() { * Test the property 'dq' */ @Test - public void dqTest() { + void dqTest() { // TODO: test dq } @@ -96,7 +96,7 @@ public void dqTest() { * Test the property 'teamKey' */ @Test - public void teamKeyTest() { + void teamKeyTest() { // TODO: test teamKey } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankSortOrderInfoTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankSortOrderInfoTest.java index d5eccb2..bad2124 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankSortOrderInfoTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankSortOrderInfoTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatusRankSortOrderInfo */ -public class TeamEventStatusRankSortOrderInfoTest { +class TeamEventStatusRankSortOrderInfoTest { private final TeamEventStatusRankSortOrderInfo model = new TeamEventStatusRankSortOrderInfo(); /** * Model tests for TeamEventStatusRankSortOrderInfo */ @Test - public void testTeamEventStatusRankSortOrderInfo() { + void testTeamEventStatusRankSortOrderInfo() { // TODO: test TeamEventStatusRankSortOrderInfo } @@ -44,7 +44,7 @@ public void testTeamEventStatusRankSortOrderInfo() { * Test the property 'precision' */ @Test - public void precisionTest() { + void precisionTest() { // TODO: test precision } @@ -52,7 +52,7 @@ public void precisionTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankTest.java index 3801cf7..f1ac4a0 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusRankTest.java @@ -25,22 +25,22 @@ import java.util.List; import net.thefletcher.tbaapi.v3client.model.TeamEventStatusRankRanking; import net.thefletcher.tbaapi.v3client.model.TeamEventStatusRankSortOrderInfo; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatusRank */ -public class TeamEventStatusRankTest { +class TeamEventStatusRankTest { private final TeamEventStatusRank model = new TeamEventStatusRank(); /** * Model tests for TeamEventStatusRank */ @Test - public void testTeamEventStatusRank() { + void testTeamEventStatusRank() { // TODO: test TeamEventStatusRank } @@ -48,7 +48,7 @@ public void testTeamEventStatusRank() { * Test the property 'numTeams' */ @Test - public void numTeamsTest() { + void numTeamsTest() { // TODO: test numTeams } @@ -56,7 +56,7 @@ public void numTeamsTest() { * Test the property 'ranking' */ @Test - public void rankingTest() { + void rankingTest() { // TODO: test ranking } @@ -64,7 +64,7 @@ public void rankingTest() { * Test the property 'sortOrderInfo' */ @Test - public void sortOrderInfoTest() { + void sortOrderInfoTest() { // TODO: test sortOrderInfo } @@ -72,7 +72,7 @@ public void sortOrderInfoTest() { * Test the property 'status' */ @Test - public void statusTest() { + void statusTest() { // TODO: test status } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusTest.java index 484df5c..4b2b69b 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamEventStatusTest.java @@ -24,22 +24,22 @@ import net.thefletcher.tbaapi.v3client.model.TeamEventStatusAlliance; import net.thefletcher.tbaapi.v3client.model.TeamEventStatusPlayoff; import net.thefletcher.tbaapi.v3client.model.TeamEventStatusRank; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamEventStatus */ -public class TeamEventStatusTest { +class TeamEventStatusTest { private final TeamEventStatus model = new TeamEventStatus(); /** * Model tests for TeamEventStatus */ @Test - public void testTeamEventStatus() { + void testTeamEventStatus() { // TODO: test TeamEventStatus } @@ -47,7 +47,7 @@ public void testTeamEventStatus() { * Test the property 'qual' */ @Test - public void qualTest() { + void qualTest() { // TODO: test qual } @@ -55,7 +55,7 @@ public void qualTest() { * Test the property 'alliance' */ @Test - public void allianceTest() { + void allianceTest() { // TODO: test alliance } @@ -63,7 +63,7 @@ public void allianceTest() { * Test the property 'playoff' */ @Test - public void playoffTest() { + void playoffTest() { // TODO: test playoff } @@ -71,7 +71,7 @@ public void playoffTest() { * Test the property 'allianceStatusStr' */ @Test - public void allianceStatusStrTest() { + void allianceStatusStrTest() { // TODO: test allianceStatusStr } @@ -79,7 +79,7 @@ public void allianceStatusStrTest() { * Test the property 'playoffStatusStr' */ @Test - public void playoffStatusStrTest() { + void playoffStatusStrTest() { // TODO: test playoffStatusStr } @@ -87,7 +87,7 @@ public void playoffStatusStrTest() { * Test the property 'overallStatusStr' */ @Test - public void overallStatusStrTest() { + void overallStatusStrTest() { // TODO: test overallStatusStr } @@ -95,7 +95,7 @@ public void overallStatusStrTest() { * Test the property 'nextMatchKey' */ @Test - public void nextMatchKeyTest() { + void nextMatchKeyTest() { // TODO: test nextMatchKey } @@ -103,7 +103,7 @@ public void nextMatchKeyTest() { * Test the property 'lastMatchKey' */ @Test - public void lastMatchKeyTest() { + void lastMatchKeyTest() { // TODO: test lastMatchKey } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamRobotTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamRobotTest.java index f1d3464..b0cb05f 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamRobotTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamRobotTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamRobot */ -public class TeamRobotTest { +class TeamRobotTest { private final TeamRobot model = new TeamRobot(); /** * Model tests for TeamRobot */ @Test - public void testTeamRobot() { + void testTeamRobot() { // TODO: test TeamRobot } @@ -44,7 +44,7 @@ public void testTeamRobot() { * Test the property 'year' */ @Test - public void yearTest() { + void yearTest() { // TODO: test year } @@ -52,7 +52,7 @@ public void yearTest() { * Test the property 'robotName' */ @Test - public void robotNameTest() { + void robotNameTest() { // TODO: test robotName } @@ -60,7 +60,7 @@ public void robotNameTest() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -68,7 +68,7 @@ public void keyTest() { * Test the property 'teamKey' */ @Test - public void teamKeyTest() { + void teamKeyTest() { // TODO: test teamKey } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamSimpleTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamSimpleTest.java index 110b371..738dedf 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamSimpleTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamSimpleTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for TeamSimple */ -public class TeamSimpleTest { +class TeamSimpleTest { private final TeamSimple model = new TeamSimple(); /** * Model tests for TeamSimple */ @Test - public void testTeamSimple() { + void testTeamSimple() { // TODO: test TeamSimple } @@ -44,7 +44,7 @@ public void testTeamSimple() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -52,7 +52,7 @@ public void keyTest() { * Test the property 'teamNumber' */ @Test - public void teamNumberTest() { + void teamNumberTest() { // TODO: test teamNumber } @@ -60,7 +60,7 @@ public void teamNumberTest() { * Test the property 'nickname' */ @Test - public void nicknameTest() { + void nicknameTest() { // TODO: test nickname } @@ -68,7 +68,7 @@ public void nicknameTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -76,7 +76,7 @@ public void nameTest() { * Test the property 'city' */ @Test - public void cityTest() { + void cityTest() { // TODO: test city } @@ -84,7 +84,7 @@ public void cityTest() { * Test the property 'stateProv' */ @Test - public void stateProvTest() { + void stateProvTest() { // TODO: test stateProv } @@ -92,7 +92,7 @@ public void stateProvTest() { * Test the property 'country' */ @Test - public void countryTest() { + void countryTest() { // TODO: test country } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamTest.java index 83f7b22..d1e9688 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/TeamTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Team */ -public class TeamTest { +class TeamTest { private final Team model = new Team(); /** * Model tests for Team */ @Test - public void testTeam() { + void testTeam() { // TODO: test Team } @@ -44,7 +44,7 @@ public void testTeam() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -52,7 +52,7 @@ public void keyTest() { * Test the property 'teamNumber' */ @Test - public void teamNumberTest() { + void teamNumberTest() { // TODO: test teamNumber } @@ -60,7 +60,7 @@ public void teamNumberTest() { * Test the property 'nickname' */ @Test - public void nicknameTest() { + void nicknameTest() { // TODO: test nickname } @@ -68,7 +68,7 @@ public void nicknameTest() { * Test the property 'name' */ @Test - public void nameTest() { + void nameTest() { // TODO: test name } @@ -76,7 +76,7 @@ public void nameTest() { * Test the property 'city' */ @Test - public void cityTest() { + void cityTest() { // TODO: test city } @@ -84,7 +84,7 @@ public void cityTest() { * Test the property 'stateProv' */ @Test - public void stateProvTest() { + void stateProvTest() { // TODO: test stateProv } @@ -92,7 +92,7 @@ public void stateProvTest() { * Test the property 'country' */ @Test - public void countryTest() { + void countryTest() { // TODO: test country } @@ -100,7 +100,7 @@ public void countryTest() { * Test the property 'address' */ @Test - public void addressTest() { + void addressTest() { // TODO: test address } @@ -108,7 +108,7 @@ public void addressTest() { * Test the property 'postalCode' */ @Test - public void postalCodeTest() { + void postalCodeTest() { // TODO: test postalCode } @@ -116,7 +116,7 @@ public void postalCodeTest() { * Test the property 'gmapsPlaceId' */ @Test - public void gmapsPlaceIdTest() { + void gmapsPlaceIdTest() { // TODO: test gmapsPlaceId } @@ -124,7 +124,7 @@ public void gmapsPlaceIdTest() { * Test the property 'gmapsUrl' */ @Test - public void gmapsUrlTest() { + void gmapsUrlTest() { // TODO: test gmapsUrl } @@ -132,7 +132,7 @@ public void gmapsUrlTest() { * Test the property 'lat' */ @Test - public void latTest() { + void latTest() { // TODO: test lat } @@ -140,7 +140,7 @@ public void latTest() { * Test the property 'lng' */ @Test - public void lngTest() { + void lngTest() { // TODO: test lng } @@ -148,7 +148,7 @@ public void lngTest() { * Test the property 'locationName' */ @Test - public void locationNameTest() { + void locationNameTest() { // TODO: test locationName } @@ -156,7 +156,7 @@ public void locationNameTest() { * Test the property 'website' */ @Test - public void websiteTest() { + void websiteTest() { // TODO: test website } @@ -164,7 +164,7 @@ public void websiteTest() { * Test the property 'rookieYear' */ @Test - public void rookieYearTest() { + void rookieYearTest() { // TODO: test rookieYear } @@ -172,7 +172,7 @@ public void rookieYearTest() { * Test the property 'motto' */ @Test - public void mottoTest() { + void mottoTest() { // TODO: test motto } @@ -180,7 +180,7 @@ public void mottoTest() { * Test the property 'homeChampionship' */ @Test - public void homeChampionshipTest() { + void homeChampionshipTest() { // TODO: test homeChampionship } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/WLTRecordTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/WLTRecordTest.java index 79ffdf8..abc8193 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/WLTRecordTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/WLTRecordTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for WLTRecord */ -public class WLTRecordTest { +class WLTRecordTest { private final WLTRecord model = new WLTRecord(); /** * Model tests for WLTRecord */ @Test - public void testWLTRecord() { + void testWLTRecord() { // TODO: test WLTRecord } @@ -44,7 +44,7 @@ public void testWLTRecord() { * Test the property 'losses' */ @Test - public void lossesTest() { + void lossesTest() { // TODO: test losses } @@ -52,7 +52,7 @@ public void lossesTest() { * Test the property 'wins' */ @Test - public void winsTest() { + void winsTest() { // TODO: test wins } @@ -60,7 +60,7 @@ public void winsTest() { * Test the property 'ties' */ @Test - public void tiesTest() { + void tiesTest() { // TODO: test ties } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/WebcastTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/WebcastTest.java index 0d6dff5..d3b1377 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/WebcastTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/WebcastTest.java @@ -21,22 +21,22 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.IOException; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Webcast */ -public class WebcastTest { +class WebcastTest { private final Webcast model = new Webcast(); /** * Model tests for Webcast */ @Test - public void testWebcast() { + void testWebcast() { // TODO: test Webcast } @@ -44,7 +44,7 @@ public void testWebcast() { * Test the property 'type' */ @Test - public void typeTest() { + void typeTest() { // TODO: test type } @@ -52,7 +52,7 @@ public void typeTest() { * Test the property 'channel' */ @Test - public void channelTest() { + void channelTest() { // TODO: test channel } @@ -60,7 +60,7 @@ public void channelTest() { * Test the property 'file' */ @Test - public void fileTest() { + void fileTest() { // TODO: test file } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraAlliancesTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraAlliancesTest.java index ef55432..c0068f3 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraAlliancesTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraAlliancesTest.java @@ -24,22 +24,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.ZebraTeam; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for ZebraAlliances */ -public class ZebraAlliancesTest { +class ZebraAlliancesTest { private final ZebraAlliances model = new ZebraAlliances(); /** * Model tests for ZebraAlliances */ @Test - public void testZebraAlliances() { + void testZebraAlliances() { // TODO: test ZebraAlliances } @@ -47,7 +47,7 @@ public void testZebraAlliances() { * Test the property 'red' */ @Test - public void redTest() { + void redTest() { // TODO: test red } @@ -55,7 +55,7 @@ public void redTest() { * Test the property 'blue' */ @Test - public void blueTest() { + void blueTest() { // TODO: test blue } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTeamTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTeamTest.java index 3b4f984..101898e 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTeamTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTeamTest.java @@ -23,22 +23,22 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for ZebraTeam */ -public class ZebraTeamTest { +class ZebraTeamTest { private final ZebraTeam model = new ZebraTeam(); /** * Model tests for ZebraTeam */ @Test - public void testZebraTeam() { + void testZebraTeam() { // TODO: test ZebraTeam } @@ -46,7 +46,7 @@ public void testZebraTeam() { * Test the property 'teamKey' */ @Test - public void teamKeyTest() { + void teamKeyTest() { // TODO: test teamKey } @@ -54,7 +54,7 @@ public void teamKeyTest() { * Test the property 'xs' */ @Test - public void xsTest() { + void xsTest() { // TODO: test xs } @@ -62,7 +62,7 @@ public void xsTest() { * Test the property 'ys' */ @Test - public void ysTest() { + void ysTest() { // TODO: test ys } diff --git a/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTest.java b/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTest.java index e954a37..07cfa85 100644 --- a/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTest.java +++ b/src/test/java/net/thefletcher/tbaapi/v3client/model/ZebraTest.java @@ -24,22 +24,22 @@ import java.util.ArrayList; import java.util.List; import net.thefletcher.tbaapi.v3client.model.ZebraAlliances; -import org.junit.Assert; -import org.junit.Ignore; -import org.junit.Test; + + +import org.junit.jupiter.api.Test; /** * Model tests for Zebra */ -public class ZebraTest { +class ZebraTest { private final Zebra model = new Zebra(); /** * Model tests for Zebra */ @Test - public void testZebra() { + void testZebra() { // TODO: test Zebra } @@ -47,7 +47,7 @@ public void testZebra() { * Test the property 'key' */ @Test - public void keyTest() { + void keyTest() { // TODO: test key } @@ -55,7 +55,7 @@ public void keyTest() { * Test the property 'times' */ @Test - public void timesTest() { + void timesTest() { // TODO: test times } @@ -63,7 +63,7 @@ public void timesTest() { * Test the property 'alliances' */ @Test - public void alliancesTest() { + void alliancesTest() { // TODO: test alliances } From f12fcc45ae7759687a3e10108caa435a72d33add Mon Sep 17 00:00:00 2001 From: matthew Date: Wed, 25 Jan 2023 17:21:04 -0500 Subject: [PATCH 3/3] version the project; --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0de765b..39c6c60 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ tba-api-v3client jar tba-api-v3client - 3.03.1 + 3.04.1 https://github.com/swagger-api/swagger-codegen Swagger Java
Response Details
Status Code Description Response Headers
200 Successful response * Cache-Control - The `Cache-Control` header, in particular the `max-age` value, contains the number of seconds the result should be considered valid for. During this time subsequent calls should return from the local cache directly.
* Last-Modified - Indicates the date and time the data returned was last updated. Used by clients in the `If-Modified-Since` request header.
304 Not Modified - Use Local Cached Value -