![JAR search and dependency download from the Maven repository](/logo.png)
net.leanix.api.SuggestionsApi Maven / Gradle / Ivy
package net.leanix.api;
import net.leanix.api.common.ApiException;
import net.leanix.api.common.ApiClient;
import net.leanix.api.common.Configuration;
import net.leanix.api.common.Pair;
import javax.ws.rs.core.GenericType;
import net.leanix.api.models.SuggestionsResponse;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class SuggestionsApi {
private ApiClient apiClient;
public SuggestionsApi() {
this(Configuration.getDefaultApiClient());
}
public SuggestionsApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* getSuggestions
* Retrieves a list of suggestions for a search term
* @param q search term (required)
* @param object suggestions object type (optional, default to factSheet)
* @param count number of suggestions, defaultValue is 50 if perType = false, 25 otherwise (optional)
* @param perType if suggestions are to be grouped per object type (optional, default to false)
* @return SuggestionsResponse
* @throws ApiException if fails to make API call
*/
public SuggestionsResponse getSuggestions(String q, String object, Integer count, Boolean perType) throws ApiException {
Object localVarPostBody = null;
// verify the required parameter 'q' is set
if (q == null) {
throw new ApiException(400, "Missing the required parameter 'q' when calling getSuggestions");
}
// create path and map variables
String localVarPath = "/suggestions".replaceAll("\\{format\\}","json");
// query params
List localVarQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
localVarQueryParams.addAll(apiClient.parameterToPairs("", "q", q));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "object", object));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "count", count));
localVarQueryParams.addAll(apiClient.parameterToPairs("", "perType", perType));
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
final String[] localVarContentTypes = {
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
String[] localVarAuthNames = new String[] { "token" };
GenericType localVarReturnType = new GenericType() {};
return apiClient.invokeAPI(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAccept, localVarContentType, localVarAuthNames, localVarReturnType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy