com.unblu.webapi.jersey.v4.api.AvailabilityApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey3-client-v4 Show documentation
Show all versions of jersey3-client-v4 Show documentation
Client implemented using Jersey
The newest version!
package com.unblu.webapi.jersey.v4.api;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.unblu.webapi.jersey.v4.invoker.ApiClient;
import com.unblu.webapi.jersey.v4.invoker.ApiException;
import com.unblu.webapi.jersey.v4.invoker.ApiResponse;
import com.unblu.webapi.jersey.v4.invoker.Configuration;
import com.unblu.webapi.jersey.v4.invoker.Pair;
import com.unblu.webapi.model.v4.AgentAvailabilityStateData;
import jakarta.ws.rs.core.GenericType;
public class AvailabilityApi {
private ApiClient apiClient;
public AvailabilityApi() {
this(Configuration.getDefaultApiClient());
}
public AvailabilityApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* getAgentAvailability Returns the current availability state for a given user, account, named area, and locale.<br><br>
*
* @param userId If specified, the availability will be returned for the specified user only (optional)
* @param locale The locale in form of a BCP 47 language tag (including the region if available) to check the availability for. If omitted, the service will
* check the availability of agents who did not filter the queue by language. (optional)
* @param namedAreaSiteId The site ID (meta tag or domain) of the named area to check the availability for. If omitted, the service will check the availability
* of agents who did not filter the queue by named area. (optional)
* @param apiKey API key to specify the account; mandatory when called as an anonymous user (optional)
* @param ignoreAgentAvailabilityOverride If true, the configuration property \"com.unblu.agentavailability.availabilityOverride\" will be ignored
* when evaluating agent availability. Defaults to false. (optional)
* @return AgentAvailabilityStateData
* @throws ApiException if fails to make API call
*/
public AgentAvailabilityStateData availabilityGetAgentAvailability(String userId, String locale, String namedAreaSiteId, String apiKey, Boolean ignoreAgentAvailabilityOverride) throws ApiException {
return availabilityGetAgentAvailabilityWithHttpInfo(userId, locale, namedAreaSiteId, apiKey, ignoreAgentAvailabilityOverride).getData();
}
/**
* getAgentAvailability Returns the current availability state for a given user, account, named area, and locale.<br><br>
*
* @param userId If specified, the availability will be returned for the specified user only (optional)
* @param locale The locale in form of a BCP 47 language tag (including the region if available) to check the availability for. If omitted, the service will
* check the availability of agents who did not filter the queue by language. (optional)
* @param namedAreaSiteId The site ID (meta tag or domain) of the named area to check the availability for. If omitted, the service will check the availability
* of agents who did not filter the queue by named area. (optional)
* @param apiKey API key to specify the account; mandatory when called as an anonymous user (optional)
* @param ignoreAgentAvailabilityOverride If true, the configuration property \"com.unblu.agentavailability.availabilityOverride\" will be ignored
* when evaluating agent availability. Defaults to false. (optional)
* @return ApiResponse<AgentAvailabilityStateData>
* @throws ApiException if fails to make API call
*/
public ApiResponse availabilityGetAgentAvailabilityWithHttpInfo(String userId, String locale, String namedAreaSiteId, String apiKey, Boolean ignoreAgentAvailabilityOverride) throws ApiException {
Object localVarPostBody = new HashMap<>();
// create path and map variables
String localVarPath = "/availability/getAgentAvailability";
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
localVarQueryParams.addAll(apiClient.parameterToPairs("", "userId", userId));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "locale", locale));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "namedAreaSiteId", namedAreaSiteId));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "apiKey", apiKey));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "ignoreAgentAvailabilityOverride", ignoreAgentAvailabilityOverride));
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);
}
}