Skip to content

Commit

Permalink
Deploying from phrase/openapi@b8121547
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrase committed Sep 3, 2024
1 parent beb84c9 commit 16bd5c6
Show file tree
Hide file tree
Showing 233 changed files with 262 additions and 241 deletions.
10 changes: 10 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19984,6 +19984,16 @@ paths:
schema:
type: integer
style: form
- description: "excludes tags generated by the system, e.g. job, upload or figma\
\ tags"
example: true
explode: true
in: query
name: exclude_system_tags
required: false
schema:
type: boolean
style: form
- description: specify the branch to use
example: my-feature-branch
explode: true
Expand Down
6 changes: 4 additions & 2 deletions docs/TagsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Name | Type | Description | Notes

<a name="tagsList"></a>
# **tagsList**
> List&lt;Tag&gt; tagsList(projectId, xPhraseAppOTP, page, perPage, branch)
> List&lt;Tag&gt; tagsList(projectId, xPhraseAppOTP, page, perPage, excludeSystemTags, branch)
List tags

Expand Down Expand Up @@ -291,9 +291,10 @@ public class Example {
String xPhraseAppOTP = "xPhraseAppOTP_example"; // String | Two-Factor-Authentication token (optional)
Integer page = 1; // Integer | Page number
Integer perPage = 25; // Integer | Limit on the number of objects to be returned, between 1 and 100. 25 by default
Boolean excludeSystemTags = true; // Boolean | excludes tags generated by the system, e.g. job, upload or figma tags
String branch = "my-feature-branch"; // String | specify the branch to use
try {
List<Tag> result = apiInstance.tagsList(projectId, xPhraseAppOTP, page, perPage, branch);
List<Tag> result = apiInstance.tagsList(projectId, xPhraseAppOTP, page, perPage, excludeSystemTags, branch);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling TagsApi#tagsList");
Expand All @@ -314,6 +315,7 @@ Name | Type | Description | Notes
**xPhraseAppOTP** | **String**| Two-Factor-Authentication token (optional) | [optional]
**page** | **Integer**| Page number | [optional]
**perPage** | **Integer**| Limit on the number of objects to be returned, between 1 and 100. 25 by default | [optional]
**excludeSystemTags** | **Boolean**| excludes tags generated by the system, e.g. job, upload or figma tags | [optional]
**branch** | **String**| specify the branch to use | [optional]

### Return type
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/ApiException.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class ApiException extends Exception {
private int code = 0;
private Map<String, List<String>> responseHeaders = null;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

package com.phrase.client;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class Configuration {
private static ApiClient defaultApiClient = new ApiClient();

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

package com.phrase.client;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class Pair {
private String name = "";
private String value = "";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

package com.phrase.client;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class StringUtil {
/**
* Check if the given array contains the given value (with case-insensitive comparison).
Expand Down
26 changes: 17 additions & 9 deletions src/main/java/com/phrase/client/api/TagsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,7 @@ public okhttp3.Call tagShowAsync(String projectId, String name, String xPhraseAp
* @param xPhraseAppOTP Two-Factor-Authentication token (optional) (optional)
* @param page Page number (optional)
* @param perPage Limit on the number of objects to be returned, between 1 and 100. 25 by default (optional)
* @param excludeSystemTags excludes tags generated by the system, e.g. job, upload or figma tags (optional)
* @param branch specify the branch to use (optional)
* @param _callback Callback for upload/download progress
* @return Call to execute
Expand All @@ -508,7 +509,7 @@ public okhttp3.Call tagShowAsync(String projectId, String name, String xPhraseAp
<tr><td> 429 </td><td> Rate Limiting </td><td> * X-Rate-Limit-Limit - <br> * X-Rate-Limit-Remaining - <br> * X-Rate-Limit-Reset - <br> </td></tr>
</table>
*/
public okhttp3.Call tagsListCall(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, String branch, final ApiCallback _callback) throws ApiException {
public okhttp3.Call tagsListCall(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, Boolean excludeSystemTags, String branch, final ApiCallback _callback) throws ApiException {
Object localVarPostBody = null;

// create path and map variables
Expand All @@ -525,6 +526,10 @@ public okhttp3.Call tagsListCall(String projectId, String xPhraseAppOTP, Integer
localVarQueryParams.addAll(localVarApiClient.parameterToPair("per_page", perPage));
}

if (excludeSystemTags != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("exclude_system_tags", excludeSystemTags));
}

if (branch != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("branch", branch));
}
Expand Down Expand Up @@ -555,15 +560,15 @@ public okhttp3.Call tagsListCall(String projectId, String xPhraseAppOTP, Integer
}

@SuppressWarnings("rawtypes")
private okhttp3.Call tagsListValidateBeforeCall(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, String branch, final ApiCallback _callback) throws ApiException {
private okhttp3.Call tagsListValidateBeforeCall(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, Boolean excludeSystemTags, String branch, final ApiCallback _callback) throws ApiException {

// verify the required parameter 'projectId' is set
if (projectId == null) {
throw new ApiException("Missing the required parameter 'projectId' when calling tagsList(Async)");
}


okhttp3.Call localVarCall = tagsListCall(projectId, xPhraseAppOTP, page, perPage, branch, _callback);
okhttp3.Call localVarCall = tagsListCall(projectId, xPhraseAppOTP, page, perPage, excludeSystemTags, branch, _callback);
return localVarCall;

}
Expand All @@ -575,6 +580,7 @@ private okhttp3.Call tagsListValidateBeforeCall(String projectId, String xPhrase
* @param xPhraseAppOTP Two-Factor-Authentication token (optional) (optional)
* @param page Page number (optional)
* @param perPage Limit on the number of objects to be returned, between 1 and 100. 25 by default (optional)
* @param excludeSystemTags excludes tags generated by the system, e.g. job, upload or figma tags (optional)
* @param branch specify the branch to use (optional)
* @return List&lt;Tag&gt;
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
Expand All @@ -587,8 +593,8 @@ private okhttp3.Call tagsListValidateBeforeCall(String projectId, String xPhrase
<tr><td> 429 </td><td> Rate Limiting </td><td> * X-Rate-Limit-Limit - <br> * X-Rate-Limit-Remaining - <br> * X-Rate-Limit-Reset - <br> </td></tr>
</table>
*/
public List<Tag> tagsList(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, String branch) throws ApiException {
ApiResponse<List<Tag>> localVarResp = tagsListWithHttpInfo(projectId, xPhraseAppOTP, page, perPage, branch);
public List<Tag> tagsList(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, Boolean excludeSystemTags, String branch) throws ApiException {
ApiResponse<List<Tag>> localVarResp = tagsListWithHttpInfo(projectId, xPhraseAppOTP, page, perPage, excludeSystemTags, branch);
return localVarResp.getData();
}

Expand All @@ -599,6 +605,7 @@ public List<Tag> tagsList(String projectId, String xPhraseAppOTP, Integer page,
* @param xPhraseAppOTP Two-Factor-Authentication token (optional) (optional)
* @param page Page number (optional)
* @param perPage Limit on the number of objects to be returned, between 1 and 100. 25 by default (optional)
* @param excludeSystemTags excludes tags generated by the system, e.g. job, upload or figma tags (optional)
* @param branch specify the branch to use (optional)
* @return ApiResponse&lt;List&lt;Tag&gt;&gt;
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
Expand All @@ -611,8 +618,8 @@ public List<Tag> tagsList(String projectId, String xPhraseAppOTP, Integer page,
<tr><td> 429 </td><td> Rate Limiting </td><td> * X-Rate-Limit-Limit - <br> * X-Rate-Limit-Remaining - <br> * X-Rate-Limit-Reset - <br> </td></tr>
</table>
*/
public ApiResponse<List<Tag>> tagsListWithHttpInfo(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, String branch) throws ApiException {
okhttp3.Call localVarCall = tagsListValidateBeforeCall(projectId, xPhraseAppOTP, page, perPage, branch, null);
public ApiResponse<List<Tag>> tagsListWithHttpInfo(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, Boolean excludeSystemTags, String branch) throws ApiException {
okhttp3.Call localVarCall = tagsListValidateBeforeCall(projectId, xPhraseAppOTP, page, perPage, excludeSystemTags, branch, null);
Type localVarReturnType = new TypeToken<List<Tag>>(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
Expand All @@ -624,6 +631,7 @@ public ApiResponse<List<Tag>> tagsListWithHttpInfo(String projectId, String xPhr
* @param xPhraseAppOTP Two-Factor-Authentication token (optional) (optional)
* @param page Page number (optional)
* @param perPage Limit on the number of objects to be returned, between 1 and 100. 25 by default (optional)
* @param excludeSystemTags excludes tags generated by the system, e.g. job, upload or figma tags (optional)
* @param branch specify the branch to use (optional)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
Expand All @@ -637,9 +645,9 @@ public ApiResponse<List<Tag>> tagsListWithHttpInfo(String projectId, String xPhr
<tr><td> 429 </td><td> Rate Limiting </td><td> * X-Rate-Limit-Limit - <br> * X-Rate-Limit-Remaining - <br> * X-Rate-Limit-Reset - <br> </td></tr>
</table>
*/
public okhttp3.Call tagsListAsync(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, String branch, final ApiCallback<List<Tag>> _callback) throws ApiException {
public okhttp3.Call tagsListAsync(String projectId, String xPhraseAppOTP, Integer page, Integer perPage, Boolean excludeSystemTags, String branch, final ApiCallback<List<Tag>> _callback) throws ApiException {

okhttp3.Call localVarCall = tagsListValidateBeforeCall(projectId, xPhraseAppOTP, page, perPage, branch, _callback);
okhttp3.Call localVarCall = tagsListValidateBeforeCall(projectId, xPhraseAppOTP, page, perPage, excludeSystemTags, branch, _callback);
Type localVarReturnType = new TypeToken<List<Tag>>(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/auth/ApiKeyAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class ApiKeyAuth implements Authentication {
private final String location;
private final String paramName;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/auth/HttpBearerAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.Map;
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class HttpBearerAuth implements Authentication {
private final String scheme;
private String bearerToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
/**
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public abstract class AbstractOpenApiSchema {

// store the actual instance of the schema/object
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/model/Account.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* Account
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class Account {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/model/AccountDetails.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* AccountDetails
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AccountDetails {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* AccountSearchResult
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AccountSearchResult {
public static final String SERIALIZED_NAME_QUERY = "query";
@SerializedName(SERIALIZED_NAME_QUERY)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/model/AffectedCount.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* AffectedCount
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AffectedCount {
public static final String SERIALIZED_NAME_RECORDS_AFFECTED = "records_affected";
@SerializedName(SERIALIZED_NAME_RECORDS_AFFECTED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* AffectedResources
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AffectedResources {
public static final String SERIALIZED_NAME_RECORDS_AFFECTED = "records_affected";
@SerializedName(SERIALIZED_NAME_RECORDS_AFFECTED)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/model/Authorization.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Authorization
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class Authorization {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* AuthorizationCreateParameters
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AuthorizationCreateParameters {
public static final String SERIALIZED_NAME_NOTE = "note";
@SerializedName(SERIALIZED_NAME_NOTE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* AuthorizationUpdateParameters
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AuthorizationUpdateParameters {
public static final String SERIALIZED_NAME_NOTE = "note";
@SerializedName(SERIALIZED_NAME_NOTE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* AuthorizationWithToken
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class AuthorizationWithToken {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/model/BitbucketSync.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* BitbucketSync
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class BitbucketSync {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* BitbucketSyncExportParameters
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class BitbucketSyncExportParameters {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* BitbucketSyncExportResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class BitbucketSyncExportResponse {
public static final String SERIALIZED_NAME_STATUS_PATH = "status_path";
@SerializedName(SERIALIZED_NAME_STATUS_PATH)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* BitbucketSyncImportParameters
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class BitbucketSyncImportParameters {
public static final String SERIALIZED_NAME_ACCOUNT_ID = "account_id";
@SerializedName(SERIALIZED_NAME_ACCOUNT_ID)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/phrase/client/model/BlacklistedKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/**
* BlacklistedKey
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-27T08:58:12.422437Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-09-03T09:11:11.563990Z[Etc/UTC]")
public class BlacklistedKey {
public static final String SERIALIZED_NAME_ID = "id";
@SerializedName(SERIALIZED_NAME_ID)
Expand Down
Loading

0 comments on commit 16bd5c6

Please sign in to comment.