ClickSend.Api.InboundSmsRulesApi Maven / Gradle / Ivy
The newest version!
/*
* ClickSend v3 API
* This is an official SDK for [ClickSend](https://clicksend.com) Below you will find a current list of the available methods for clicksend. *NOTE: You will need to create a free account to use the API. You can register [here](https://dashboard.clicksend.com/#/signup/step1/)..*
*
* OpenAPI spec version: 3.1
* Contact: [email protected]
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package ClickSend.Api;
import ClickSend.ApiCallback;
import ClickSend.ApiClient;
import ClickSend.ApiException;
import ClickSend.ApiResponse;
import ClickSend.Configuration;
import ClickSend.Pair;
import ClickSend.ProgressRequestBody;
import ClickSend.ProgressResponseBody;
import com.google.gson.reflect.TypeToken;
import java.io.IOException;
import ClickSend.Model.InboundSMSRule;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class InboundSmsRulesApi {
private ApiClient apiClient;
public InboundSmsRulesApi() {
this(Configuration.getDefaultApiClient());
}
public InboundSmsRulesApi(ApiClient apiClient) {
this.apiClient = apiClient;
}
public ApiClient getApiClient() {
return apiClient;
}
public void setApiClient(ApiClient apiClient) {
this.apiClient = apiClient;
}
/**
* Build call for smsInboundAutomationDelete
* @param inboundRuleId Inbound rule id (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call smsInboundAutomationDeleteCall(Integer inboundRuleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/automations/sms/inbound/{inbound_rule_id}"
.replaceAll("\\{" + "inbound_rule_id" + "\\}", apiClient.escapeString(inboundRuleId.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "BasicAuth" };
return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call smsInboundAutomationDeleteValidateBeforeCall(Integer inboundRuleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'inboundRuleId' is set
if (inboundRuleId == null) {
throw new ApiException("Missing the required parameter 'inboundRuleId' when calling smsInboundAutomationDelete(Async)");
}
com.squareup.okhttp.Call call = smsInboundAutomationDeleteCall(inboundRuleId, progressListener, progressRequestListener);
return call;
}
/**
* Delete inbound sms automation
* Delete inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public String smsInboundAutomationDelete(Integer inboundRuleId) throws ApiException {
ApiResponse resp = smsInboundAutomationDeleteWithHttpInfo(inboundRuleId);
return resp.getData();
}
/**
* Delete inbound sms automation
* Delete inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse smsInboundAutomationDeleteWithHttpInfo(Integer inboundRuleId) throws ApiException {
com.squareup.okhttp.Call call = smsInboundAutomationDeleteValidateBeforeCall(inboundRuleId, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Delete inbound sms automation (asynchronously)
* Delete inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @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
*/
public com.squareup.okhttp.Call smsInboundAutomationDeleteAsync(Integer inboundRuleId, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = smsInboundAutomationDeleteValidateBeforeCall(inboundRuleId, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
* Build call for smsInboundAutomationGet
* @param inboundRuleId Inbound rule id (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call smsInboundAutomationGetCall(Integer inboundRuleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/automations/sms/inbound/{inbound_rule_id}"
.replaceAll("\\{" + "inbound_rule_id" + "\\}", apiClient.escapeString(inboundRuleId.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "BasicAuth" };
return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call smsInboundAutomationGetValidateBeforeCall(Integer inboundRuleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'inboundRuleId' is set
if (inboundRuleId == null) {
throw new ApiException("Missing the required parameter 'inboundRuleId' when calling smsInboundAutomationGet(Async)");
}
com.squareup.okhttp.Call call = smsInboundAutomationGetCall(inboundRuleId, progressListener, progressRequestListener);
return call;
}
/**
* Get specific inbound sms automation
* Get specific inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public String smsInboundAutomationGet(Integer inboundRuleId) throws ApiException {
ApiResponse resp = smsInboundAutomationGetWithHttpInfo(inboundRuleId);
return resp.getData();
}
/**
* Get specific inbound sms automation
* Get specific inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse smsInboundAutomationGetWithHttpInfo(Integer inboundRuleId) throws ApiException {
com.squareup.okhttp.Call call = smsInboundAutomationGetValidateBeforeCall(inboundRuleId, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Get specific inbound sms automation (asynchronously)
* Get specific inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @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
*/
public com.squareup.okhttp.Call smsInboundAutomationGetAsync(Integer inboundRuleId, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = smsInboundAutomationGetValidateBeforeCall(inboundRuleId, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
* Build call for smsInboundAutomationPost
* @param inboundSmsRule Inbound sms rule model (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call smsInboundAutomationPostCall(InboundSMSRule inboundSmsRule, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = inboundSmsRule;
// create path and map variables
String localVarPath = "/automations/sms/inbound";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "BasicAuth" };
return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call smsInboundAutomationPostValidateBeforeCall(InboundSMSRule inboundSmsRule, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'inboundSmsRule' is set
if (inboundSmsRule == null) {
throw new ApiException("Missing the required parameter 'inboundSmsRule' when calling smsInboundAutomationPost(Async)");
}
com.squareup.okhttp.Call call = smsInboundAutomationPostCall(inboundSmsRule, progressListener, progressRequestListener);
return call;
}
/**
* Create new inbound sms automation
* Create new inbound sms automation
* @param inboundSmsRule Inbound sms rule model (required)
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public String smsInboundAutomationPost(InboundSMSRule inboundSmsRule) throws ApiException {
ApiResponse resp = smsInboundAutomationPostWithHttpInfo(inboundSmsRule);
return resp.getData();
}
/**
* Create new inbound sms automation
* Create new inbound sms automation
* @param inboundSmsRule Inbound sms rule model (required)
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse smsInboundAutomationPostWithHttpInfo(InboundSMSRule inboundSmsRule) throws ApiException {
com.squareup.okhttp.Call call = smsInboundAutomationPostValidateBeforeCall(inboundSmsRule, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Create new inbound sms automation (asynchronously)
* Create new inbound sms automation
* @param inboundSmsRule Inbound sms rule model (required)
* @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
*/
public com.squareup.okhttp.Call smsInboundAutomationPostAsync(InboundSMSRule inboundSmsRule, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = smsInboundAutomationPostValidateBeforeCall(inboundSmsRule, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
* Build call for smsInboundAutomationPut
* @param inboundRuleId Inbound rule id (required)
* @param inboundSmsRule Inbound sms rule model (required)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call smsInboundAutomationPutCall(Integer inboundRuleId, InboundSMSRule inboundSmsRule, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = inboundSmsRule;
// create path and map variables
String localVarPath = "/automations/sms/inbound/{inbound_rule_id}"
.replaceAll("\\{" + "inbound_rule_id" + "\\}", apiClient.escapeString(inboundRuleId.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "BasicAuth" };
return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call smsInboundAutomationPutValidateBeforeCall(Integer inboundRuleId, InboundSMSRule inboundSmsRule, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'inboundRuleId' is set
if (inboundRuleId == null) {
throw new ApiException("Missing the required parameter 'inboundRuleId' when calling smsInboundAutomationPut(Async)");
}
// verify the required parameter 'inboundSmsRule' is set
if (inboundSmsRule == null) {
throw new ApiException("Missing the required parameter 'inboundSmsRule' when calling smsInboundAutomationPut(Async)");
}
com.squareup.okhttp.Call call = smsInboundAutomationPutCall(inboundRuleId, inboundSmsRule, progressListener, progressRequestListener);
return call;
}
/**
* Update inbound sms automation
* Update inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @param inboundSmsRule Inbound sms rule model (required)
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public String smsInboundAutomationPut(Integer inboundRuleId, InboundSMSRule inboundSmsRule) throws ApiException {
ApiResponse resp = smsInboundAutomationPutWithHttpInfo(inboundRuleId, inboundSmsRule);
return resp.getData();
}
/**
* Update inbound sms automation
* Update inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @param inboundSmsRule Inbound sms rule model (required)
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse smsInboundAutomationPutWithHttpInfo(Integer inboundRuleId, InboundSMSRule inboundSmsRule) throws ApiException {
com.squareup.okhttp.Call call = smsInboundAutomationPutValidateBeforeCall(inboundRuleId, inboundSmsRule, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Update inbound sms automation (asynchronously)
* Update inbound sms automation
* @param inboundRuleId Inbound rule id (required)
* @param inboundSmsRule Inbound sms rule model (required)
* @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
*/
public com.squareup.okhttp.Call smsInboundAutomationPutAsync(Integer inboundRuleId, InboundSMSRule inboundSmsRule, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = smsInboundAutomationPutValidateBeforeCall(inboundRuleId, inboundSmsRule, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
/**
* Build call for smsInboundAutomationsGet
* @param q Your keyword or query. (optional)
* @param page Page number (optional, default to 1)
* @param limit Number of records per page (optional, default to 10)
* @param progressListener Progress listener
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
public com.squareup.okhttp.Call smsInboundAutomationsGetCall(String q, Integer page, Integer limit, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/automations/sms/inbound";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
if (q != null)
localVarQueryParams.addAll(apiClient.parameterToPair("q", q));
if (page != null)
localVarQueryParams.addAll(apiClient.parameterToPair("page", page));
if (limit != null)
localVarQueryParams.addAll(apiClient.parameterToPair("limit", limit));
Map localVarHeaderParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
if(progressListener != null) {
apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException {
com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
return originalResponse.newBuilder()
.body(new ProgressResponseBody(originalResponse.body(), progressListener))
.build();
}
});
}
String[] localVarAuthNames = new String[] { "BasicAuth" };
return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
}
@SuppressWarnings("rawtypes")
private com.squareup.okhttp.Call smsInboundAutomationsGetValidateBeforeCall(String q, Integer page, Integer limit, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
com.squareup.okhttp.Call call = smsInboundAutomationsGetCall(q, page, limit, progressListener, progressRequestListener);
return call;
}
/**
* Get all inbound sms automations
* Get all inbound sms automations
* @param q Your keyword or query. (optional)
* @param page Page number (optional, default to 1)
* @param limit Number of records per page (optional, default to 10)
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public String smsInboundAutomationsGet(String q, Integer page, Integer limit) throws ApiException {
ApiResponse resp = smsInboundAutomationsGetWithHttpInfo(q, page, limit);
return resp.getData();
}
/**
* Get all inbound sms automations
* Get all inbound sms automations
* @param q Your keyword or query. (optional)
* @param page Page number (optional, default to 1)
* @param limit Number of records per page (optional, default to 10)
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse smsInboundAutomationsGetWithHttpInfo(String q, Integer page, Integer limit) throws ApiException {
com.squareup.okhttp.Call call = smsInboundAutomationsGetValidateBeforeCall(q, page, limit, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
/**
* Get all inbound sms automations (asynchronously)
* Get all inbound sms automations
* @param q Your keyword or query. (optional)
* @param page Page number (optional, default to 1)
* @param limit Number of records per page (optional, default to 10)
* @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
*/
public com.squareup.okhttp.Call smsInboundAutomationsGetAsync(String q, Integer page, Integer limit, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = new ProgressResponseBody.ProgressListener() {
@Override
public void update(long bytesRead, long contentLength, boolean done) {
callback.onDownloadProgress(bytesRead, contentLength, done);
}
};
progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
@Override
public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
callback.onUploadProgress(bytesWritten, contentLength, done);
}
};
}
com.squareup.okhttp.Call call = smsInboundAutomationsGetValidateBeforeCall(q, page, limit, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
}