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.
package com.unblu.webapi.jersey.v3.api;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jakarta.ws.rs.core.GenericType;
import com.unblu.webapi.jersey.v3.invoker.ApiClient;
import com.unblu.webapi.jersey.v3.invoker.ApiException;
import com.unblu.webapi.jersey.v3.invoker.ApiResponse;
import com.unblu.webapi.jersey.v3.invoker.Configuration;
import com.unblu.webapi.jersey.v3.invoker.Pair;
import com.unblu.webapi.model.v3.DeputyRelationship;
import com.unblu.webapi.model.v3.DeputyRelationshipQuery;
import com.unblu.webapi.model.v3.DeputyRelationshipResult;
import com.unblu.webapi.model.v3.WriteAgentDeputyRelationshipsBody;
public class DeputyRelationshipsApi {
private ApiClient apiClient;
public DeputyRelationshipsApi() {
this(Configuration.getDefaultApiClient());
}
public DeputyRelationshipsApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* create Creates the given deputy relationship in the system. The id of the deputy relationship can not be set for create operation, a new one is
* generated.<br>
*
* @param deputyRelationship The deputy relationship to create (required)
* @return DeputyRelationship
* @throws ApiException if fails to make API call
*/
public DeputyRelationship deputyRelationshipsCreate(DeputyRelationship deputyRelationship) throws ApiException {
return deputyRelationshipsCreateWithHttpInfo(deputyRelationship).getData();
}
/**
* create Creates the given deputy relationship in the system. The id of the deputy relationship can not be set for create operation, a new one is
* generated.<br>
*
* @param deputyRelationship The deputy relationship to create (required)
* @return ApiResponse<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsCreateWithHttpInfo(DeputyRelationship deputyRelationship) throws ApiException {
Object localVarPostBody = deputyRelationship;
// verify the required parameter 'deputyRelationship' is set
if (deputyRelationship == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationship' when calling deputyRelationshipsCreate");
}
// create path and map variables
String localVarPath = "/deputyrelationships/create";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* delete Deletes the deputy relationship for the given id<br>
*
* @param id The id of the deputy relationship which should be deleted (optional)
* @throws ApiException if fails to make API call
*/
public void deputyRelationshipsDelete(String id) throws ApiException {
deputyRelationshipsDeleteWithHttpInfo(id);
}
/**
* delete Deletes the deputy relationship for the given id<br>
*
* @param id The id of the deputy relationship which should be deleted (optional)
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsDeleteWithHttpInfo(String id) throws ApiException {
Object localVarPostBody = new HashMap<>();
// create path and map variables
String localVarPath = "/deputyrelationships/delete";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
localVarQueryParams.addAll(apiClient.parameterToPairs("", "id", id));
final String[] localVarAccepts = {
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
return apiClient.invokeAPI(localVarPath, "DELETE", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
}
/**
* read Returns the deputy relationship for the given id<br>
*
* @param id Id of the deputy relationship which should be returned (optional)
* @return DeputyRelationship
* @throws ApiException if fails to make API call
*/
public DeputyRelationship deputyRelationshipsRead(String id) throws ApiException {
return deputyRelationshipsReadWithHttpInfo(id).getData();
}
/**
* read Returns the deputy relationship for the given id<br>
*
* @param id Id of the deputy relationship which should be returned (optional)
* @return ApiResponse<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsReadWithHttpInfo(String id) throws ApiException {
Object localVarPostBody = new HashMap<>();
// create path and map variables
String localVarPath = "/deputyrelationships/read";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
localVarQueryParams.addAll(apiClient.parameterToPairs("", "id", id));
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* readMultiple Gets a list of deputy relationships for the given id's<br>
*
* @param requestBody The id's for which the deputy relationships should be fetched (required)
* @return List<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public List deputyRelationshipsReadMultiple(List requestBody) throws ApiException {
return deputyRelationshipsReadMultipleWithHttpInfo(requestBody).getData();
}
/**
* readMultiple Gets a list of deputy relationships for the given id's<br>
*
* @param requestBody The id's for which the deputy relationships should be fetched (required)
* @return ApiResponse<List<DeputyRelationship>>
* @throws ApiException if fails to make API call
*/
public ApiResponse> deputyRelationshipsReadMultipleWithHttpInfo(List requestBody) throws ApiException {
Object localVarPostBody = requestBody;
// verify the required parameter 'requestBody' is set
if (requestBody == null) {
throw new ApiException(400, "Missing the required parameter 'requestBody' when calling deputyRelationshipsReadMultiple");
}
// create path and map variables
String localVarPath = "/deputyrelationships/readMultiple";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
GenericType> localVarReturnType = new GenericType>() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* search Search for deputy relationships in the current account<br>
*
* @param deputyRelationshipQuery (required)
* @return DeputyRelationshipResult
* @throws ApiException if fails to make API call
*/
public DeputyRelationshipResult deputyRelationshipsSearch(DeputyRelationshipQuery deputyRelationshipQuery) throws ApiException {
return deputyRelationshipsSearchWithHttpInfo(deputyRelationshipQuery).getData();
}
/**
* search Search for deputy relationships in the current account<br>
*
* @param deputyRelationshipQuery (required)
* @return ApiResponse<DeputyRelationshipResult>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsSearchWithHttpInfo(DeputyRelationshipQuery deputyRelationshipQuery) throws ApiException {
Object localVarPostBody = deputyRelationshipQuery;
// verify the required parameter 'deputyRelationshipQuery' is set
if (deputyRelationshipQuery == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationshipQuery' when calling deputyRelationshipsSearch");
}
// create path and map variables
String localVarPath = "/deputyrelationships/search";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* update Updates the deputy relationship in the system with the given entity.<br>
*
* @param deputyRelationship The deputy relationship to update (required)
* @return DeputyRelationship
* @throws ApiException if fails to make API call
*/
public DeputyRelationship deputyRelationshipsUpdate(DeputyRelationship deputyRelationship) throws ApiException {
return deputyRelationshipsUpdateWithHttpInfo(deputyRelationship).getData();
}
/**
* update Updates the deputy relationship in the system with the given entity.<br>
*
* @param deputyRelationship The deputy relationship to update (required)
* @return ApiResponse<DeputyRelationship>
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsUpdateWithHttpInfo(DeputyRelationship deputyRelationship) throws ApiException {
Object localVarPostBody = deputyRelationship;
// verify the required parameter 'deputyRelationship' is set
if (deputyRelationship == null) {
throw new ApiException(400, "Missing the required parameter 'deputyRelationship' when calling deputyRelationshipsUpdate");
}
// create path and map variables
String localVarPath = "/deputyrelationships/update";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
GenericType localVarReturnType = new GenericType() {
};
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
/**
* writeAgentDeputies Batch writes the deputies of an agent. All previous existing deputies of that agent will be replaced.<br>
*
* @param writeAgentDeputyRelationshipsBody The deputy relationships for that an agent with each escalation level. (required)
* @throws ApiException if fails to make API call
*/
public void deputyRelationshipsWriteAgentDeputies(WriteAgentDeputyRelationshipsBody writeAgentDeputyRelationshipsBody) throws ApiException {
deputyRelationshipsWriteAgentDeputiesWithHttpInfo(writeAgentDeputyRelationshipsBody);
}
/**
* writeAgentDeputies Batch writes the deputies of an agent. All previous existing deputies of that agent will be replaced.<br>
*
* @param writeAgentDeputyRelationshipsBody The deputy relationships for that an agent with each escalation level. (required)
* @throws ApiException if fails to make API call
*/
public ApiResponse deputyRelationshipsWriteAgentDeputiesWithHttpInfo(WriteAgentDeputyRelationshipsBody writeAgentDeputyRelationshipsBody) throws ApiException {
Object localVarPostBody = writeAgentDeputyRelationshipsBody;
// verify the required parameter 'writeAgentDeputyRelationshipsBody' is set
if (writeAgentDeputyRelationshipsBody == null) {
throw new ApiException(400, "Missing the required parameter 'writeAgentDeputyRelationshipsBody' when calling deputyRelationshipsWriteAgentDeputies");
}
// create path and map variables
String localVarPath = "/deputyrelationships/writeAgentDeputies";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "basicAuth" };
return apiClient.invokeAPI(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, null);
}
}