Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Copyright 2020 Twitter, Inc.
SPDX-License-Identifier: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
https://openapi-generator.tech
Do not edit the class manually.
*/
package com.twitter.clientlib.api;
import com.twitter.clientlib.ApiCallback;
import com.twitter.clientlib.ApiClient;
import com.twitter.clientlib.auth.*;
import com.twitter.clientlib.ApiException;
import com.twitter.clientlib.ApiResponse;
import com.twitter.clientlib.Configuration;
import com.twitter.clientlib.Pair;
import com.twitter.clientlib.ProgressRequestBody;
import com.twitter.clientlib.ProgressResponseBody;
import com.github.scribejava.core.model.OAuth2AccessToken;
import com.google.gson.reflect.TypeToken;
import java.io.IOException;
import com.twitter.clientlib.model.BookmarkAddRequest;
import com.twitter.clientlib.model.BookmarkMutationResponse;
import com.twitter.clientlib.model.Error;
import com.twitter.clientlib.model.Get2UsersIdBookmarksResponse;
import com.twitter.clientlib.model.Problem;
import java.util.Set;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Arrays;
import java.io.InputStream;
import javax.ws.rs.core.GenericType;
import org.apache.commons.lang3.StringUtils;
public class BookmarksApi extends ApiCommon {
private okhttp3.Call getUsersIdBookmarksCall(String id, Integer maxResults, String paginationToken, Set tweetFields, Set expansions, Set mediaFields, Set pollFields, Set userFields, Set placeFields, final ApiCallback _callback) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/2/users/{id}/bookmarks"
.replaceAll("\\{" + "id" + "\\}", localVarApiClient.escapeString(id.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
if (maxResults != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("max_results", maxResults));
}
if (paginationToken != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("pagination_token", paginationToken));
}
if (tweetFields != null) {
localVarCollectionQueryParams.addAll(localVarApiClient.parameterToPairs("csv", "tweet.fields", tweetFields));
}
if (expansions != null) {
localVarCollectionQueryParams.addAll(localVarApiClient.parameterToPairs("csv", "expansions", expansions));
}
if (mediaFields != null) {
localVarCollectionQueryParams.addAll(localVarApiClient.parameterToPairs("csv", "media.fields", mediaFields));
}
if (pollFields != null) {
localVarCollectionQueryParams.addAll(localVarApiClient.parameterToPairs("csv", "poll.fields", pollFields));
}
if (userFields != null) {
localVarCollectionQueryParams.addAll(localVarApiClient.parameterToPairs("csv", "user.fields", userFields));
}
if (placeFields != null) {
localVarCollectionQueryParams.addAll(localVarApiClient.parameterToPairs("csv", "place.fields", placeFields));
}
final String[] localVarAccepts = {
"application/json", "application/problem+json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "OAuth2UserToken" };
return localVarApiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, reduceAuthNames(localVarAuthNames), _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call getUsersIdBookmarksValidateBeforeCall(String id, Integer maxResults, String paginationToken, Set tweetFields, Set expansions, Set mediaFields, Set pollFields, Set userFields, Set placeFields, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'id' is set
if (id == null) {
throw new ApiException("Missing the required parameter 'id' when calling getUsersIdBookmarks(Async)");
}
okhttp3.Call localVarCall = getUsersIdBookmarksCall(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields, _callback);
return localVarCall;
}
private ApiResponse getUsersIdBookmarksWithHttpInfo(String id, Integer maxResults, String paginationToken, Set tweetFields, Set expansions, Set mediaFields, Set pollFields, Set userFields, Set placeFields) throws ApiException {
okhttp3.Call localVarCall = getUsersIdBookmarksValidateBeforeCall(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields, null);
try {
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
} catch (ApiException e) {
e.setErrorObject(localVarApiClient.getJSON().getGson().fromJson(e.getResponseBody(), new TypeToken(){}.getType()));
throw e;
}
}
private okhttp3.Call getUsersIdBookmarksAsync(String id, Integer maxResults, String paginationToken, Set tweetFields, Set expansions, Set mediaFields, Set pollFields, Set userFields, Set placeFields, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getUsersIdBookmarksValidateBeforeCall(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
public class APIgetUsersIdBookmarksRequest {
private final String id;
private Integer maxResults;
private String paginationToken;
private Set tweetFields;
private Set expansions;
private Set mediaFields;
private Set pollFields;
private Set userFields;
private Set placeFields;
private APIgetUsersIdBookmarksRequest(String id) {
this.id = id;
}
/**
* Set maxResults
* @param maxResults The maximum number of results. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest maxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
/**
* Set paginationToken
* @param paginationToken This parameter is used to get the next 'page' of results. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest paginationToken(String paginationToken) {
this.paginationToken = paginationToken;
return this;
}
/**
* Set tweetFields
* @param tweetFields A comma separated list of Tweet fields to display. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest tweetFields(Set tweetFields) {
this.tweetFields = tweetFields;
return this;
}
/**
* Set expansions
* @param expansions A comma separated list of fields to expand. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest expansions(Set expansions) {
this.expansions = expansions;
return this;
}
/**
* Set mediaFields
* @param mediaFields A comma separated list of Media fields to display. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest mediaFields(Set mediaFields) {
this.mediaFields = mediaFields;
return this;
}
/**
* Set pollFields
* @param pollFields A comma separated list of Poll fields to display. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest pollFields(Set pollFields) {
this.pollFields = pollFields;
return this;
}
/**
* Set userFields
* @param userFields A comma separated list of User fields to display. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest userFields(Set userFields) {
this.userFields = userFields;
return this;
}
/**
* Set placeFields
* @param placeFields A comma separated list of Place fields to display. (optional)
* @return APIgetUsersIdBookmarksRequest
*/
public APIgetUsersIdBookmarksRequest placeFields(Set placeFields) {
this.placeFields = placeFields;
return this;
}
/**
* Build call for getUsersIdBookmarks
* @param _callback ApiCallback API callback
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
return getUsersIdBookmarksCall(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields, _callback);
}
/**
* Execute getUsersIdBookmarks request
* @return Get2UsersIdBookmarksResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public Get2UsersIdBookmarksResponse execute() throws ApiException {
ApiResponse localVarResp = getUsersIdBookmarksWithHttpInfo(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields);
return localVarResp.getData();
}
/**
* Calls the API using a retry mechanism to handle rate limits errors.
*
*/
public Get2UsersIdBookmarksResponse execute(Integer retries) throws ApiException {
Get2UsersIdBookmarksResponse localVarResp;
try{
localVarResp = execute();
} catch (ApiException e) {
if(handleRateLimit(e, retries)) {
return execute(retries - 1);
} else {
throw e;
}
}
return localVarResp;
}
/**
* Execute getUsersIdBookmarks request with HTTP info returned
* @return ApiResponse<Get2UsersIdBookmarksResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public ApiResponse executeWithHttpInfo() throws ApiException {
return getUsersIdBookmarksWithHttpInfo(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields);
}
/**
* Execute getUsersIdBookmarks request (asynchronously)
* @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
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public okhttp3.Call executeAsync(final ApiCallback _callback) throws ApiException {
return getUsersIdBookmarksAsync(id, maxResults, paginationToken, tweetFields, expansions, mediaFields, pollFields, userFields, placeFields, _callback);
}
}
/**
* Bookmarks by User
* Returns Tweet objects that have been bookmarked by the requesting User
* @param id The ID of the authenticated source User for whom to return results. (required)
* @return APIgetUsersIdBookmarksRequest
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public APIgetUsersIdBookmarksRequest getUsersIdBookmarks(String id) {
return new APIgetUsersIdBookmarksRequest(id);
}
private okhttp3.Call postUsersIdBookmarksCall(BookmarkAddRequest bookmarkAddRequest, String id, final ApiCallback _callback) throws ApiException {
Object localVarPostBody = bookmarkAddRequest;
// create path and map variables
String localVarPath = "/2/users/{id}/bookmarks"
.replaceAll("\\{" + "id" + "\\}", localVarApiClient.escapeString(id.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json", "application/problem+json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "OAuth2UserToken" };
return localVarApiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, reduceAuthNames(localVarAuthNames), _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call postUsersIdBookmarksValidateBeforeCall(BookmarkAddRequest bookmarkAddRequest, String id, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'bookmarkAddRequest' is set
if (bookmarkAddRequest == null) {
throw new ApiException("Missing the required parameter 'bookmarkAddRequest' when calling postUsersIdBookmarks(Async)");
}
// verify the required parameter 'id' is set
if (id == null) {
throw new ApiException("Missing the required parameter 'id' when calling postUsersIdBookmarks(Async)");
}
okhttp3.Call localVarCall = postUsersIdBookmarksCall(bookmarkAddRequest, id, _callback);
return localVarCall;
}
private ApiResponse postUsersIdBookmarksWithHttpInfo(BookmarkAddRequest bookmarkAddRequest, String id) throws ApiException {
okhttp3.Call localVarCall = postUsersIdBookmarksValidateBeforeCall(bookmarkAddRequest, id, null);
try {
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
} catch (ApiException e) {
e.setErrorObject(localVarApiClient.getJSON().getGson().fromJson(e.getResponseBody(), new TypeToken(){}.getType()));
throw e;
}
}
private okhttp3.Call postUsersIdBookmarksAsync(BookmarkAddRequest bookmarkAddRequest, String id, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = postUsersIdBookmarksValidateBeforeCall(bookmarkAddRequest, id, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
public class APIpostUsersIdBookmarksRequest {
private final BookmarkAddRequest bookmarkAddRequest;
private final String id;
private APIpostUsersIdBookmarksRequest(BookmarkAddRequest bookmarkAddRequest, String id) {
this.bookmarkAddRequest = bookmarkAddRequest;
this.id = id;
}
/**
* Build call for postUsersIdBookmarks
* @param _callback ApiCallback API callback
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
return postUsersIdBookmarksCall(bookmarkAddRequest, id, _callback);
}
/**
* Execute postUsersIdBookmarks request
* @return BookmarkMutationResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public BookmarkMutationResponse execute() throws ApiException {
ApiResponse localVarResp = postUsersIdBookmarksWithHttpInfo(bookmarkAddRequest, id);
return localVarResp.getData();
}
/**
* Calls the API using a retry mechanism to handle rate limits errors.
*
*/
public BookmarkMutationResponse execute(Integer retries) throws ApiException {
BookmarkMutationResponse localVarResp;
try{
localVarResp = execute();
} catch (ApiException e) {
if(handleRateLimit(e, retries)) {
return execute(retries - 1);
} else {
throw e;
}
}
return localVarResp;
}
/**
* Execute postUsersIdBookmarks request with HTTP info returned
* @return ApiResponse<BookmarkMutationResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public ApiResponse executeWithHttpInfo() throws ApiException {
return postUsersIdBookmarksWithHttpInfo(bookmarkAddRequest, id);
}
/**
* Execute postUsersIdBookmarks request (asynchronously)
* @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
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public okhttp3.Call executeAsync(final ApiCallback _callback) throws ApiException {
return postUsersIdBookmarksAsync(bookmarkAddRequest, id, _callback);
}
}
/**
* Add Tweet to Bookmarks
* Adds a Tweet (ID in the body) to the requesting User's (in the path) bookmarks
* @param bookmarkAddRequest (required)
* @param id The ID of the authenticated source User for whom to add bookmarks. (required)
* @return APIpostUsersIdBookmarksRequest
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public APIpostUsersIdBookmarksRequest postUsersIdBookmarks(BookmarkAddRequest bookmarkAddRequest, String id) {
return new APIpostUsersIdBookmarksRequest(bookmarkAddRequest, id);
}
private okhttp3.Call usersIdBookmarksDeleteCall(String id, String tweetId, final ApiCallback _callback) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/2/users/{id}/bookmarks/{tweet_id}"
.replaceAll("\\{" + "id" + "\\}", localVarApiClient.escapeString(id.toString()))
.replaceAll("\\{" + "tweet_id" + "\\}", localVarApiClient.escapeString(tweetId.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json", "application/problem+json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "OAuth2UserToken" };
return localVarApiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, reduceAuthNames(localVarAuthNames), _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call usersIdBookmarksDeleteValidateBeforeCall(String id, String tweetId, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'id' is set
if (id == null) {
throw new ApiException("Missing the required parameter 'id' when calling usersIdBookmarksDelete(Async)");
}
// verify the required parameter 'tweetId' is set
if (tweetId == null) {
throw new ApiException("Missing the required parameter 'tweetId' when calling usersIdBookmarksDelete(Async)");
}
okhttp3.Call localVarCall = usersIdBookmarksDeleteCall(id, tweetId, _callback);
return localVarCall;
}
private ApiResponse usersIdBookmarksDeleteWithHttpInfo(String id, String tweetId) throws ApiException {
okhttp3.Call localVarCall = usersIdBookmarksDeleteValidateBeforeCall(id, tweetId, null);
try {
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
} catch (ApiException e) {
e.setErrorObject(localVarApiClient.getJSON().getGson().fromJson(e.getResponseBody(), new TypeToken(){}.getType()));
throw e;
}
}
private okhttp3.Call usersIdBookmarksDeleteAsync(String id, String tweetId, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = usersIdBookmarksDeleteValidateBeforeCall(id, tweetId, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
public class APIusersIdBookmarksDeleteRequest {
private final String id;
private final String tweetId;
private APIusersIdBookmarksDeleteRequest(String id, String tweetId) {
this.id = id;
this.tweetId = tweetId;
}
/**
* Build call for usersIdBookmarksDelete
* @param _callback ApiCallback API callback
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
return usersIdBookmarksDeleteCall(id, tweetId, _callback);
}
/**
* Execute usersIdBookmarksDelete request
* @return BookmarkMutationResponse
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public BookmarkMutationResponse execute() throws ApiException {
ApiResponse localVarResp = usersIdBookmarksDeleteWithHttpInfo(id, tweetId);
return localVarResp.getData();
}
/**
* Calls the API using a retry mechanism to handle rate limits errors.
*
*/
public BookmarkMutationResponse execute(Integer retries) throws ApiException {
BookmarkMutationResponse localVarResp;
try{
localVarResp = execute();
} catch (ApiException e) {
if(handleRateLimit(e, retries)) {
return execute(retries - 1);
} else {
throw e;
}
}
return localVarResp;
}
/**
* Execute usersIdBookmarksDelete request with HTTP info returned
* @return ApiResponse<BookmarkMutationResponse>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public ApiResponse executeWithHttpInfo() throws ApiException {
return usersIdBookmarksDeleteWithHttpInfo(id, tweetId);
}
/**
* Execute usersIdBookmarksDelete request (asynchronously)
* @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
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public okhttp3.Call executeAsync(final ApiCallback _callback) throws ApiException {
return usersIdBookmarksDeleteAsync(id, tweetId, _callback);
}
}
/**
* Remove a bookmarked Tweet
* Removes a Tweet from the requesting User's bookmarked Tweets.
* @param id The ID of the authenticated source User whose bookmark is to be removed. (required)
* @param tweetId The ID of the Tweet that the source User is removing from bookmarks. (required)
* @return APIusersIdBookmarksDeleteRequest
* @http.response.details
Status Code
Description
Response Headers
200
The request has succeeded.
-
0
The request has failed.
-
*/
public APIusersIdBookmarksDeleteRequest usersIdBookmarksDelete(String id, String tweetId) {
return new APIusersIdBookmarksDeleteRequest(id, tweetId);
}
}