();
+
+ final String[] localVarAccepts = {
+ "application/json;charset=utf-8"
+ };
+ final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
+ if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept);
+
+ final String[] localVarContentTypes = {
+ "application/json;charset=utf-8"
+ };
+ final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
+ localVarHeaderParams.put("Content-Type", localVarContentType);
+
+ if(progressListener != null) {
+ apiClient.getHttpClient().newBuilder().addNetworkInterceptor(new okhttp3.Interceptor() {
+ @Override
+ public okhttp3.Response intercept(okhttp3.Interceptor.Chain chain) throws IOException {
+ okhttp3.Response originalResponse = chain.proceed(chain.request());
+ return originalResponse.newBuilder()
+ .body(new ProgressResponseBody(originalResponse.body(), progressListener))
+ .build();
+ }
+ });
+ }
+
+ String[] localVarAuthNames = new String[] { };
+ return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
+ }
+
+ @SuppressWarnings("rawtypes")
+ private okhttp3.Call bankAccountValidationRequestValidateBeforeCall(AccountValidationsRequest accountValidationsRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
+
+ // verify the required parameter 'accountValidationsRequest' is set
+ if (accountValidationsRequest == null) {
+ logger.error("Missing the required parameter 'accountValidationsRequest' when calling bankAccountValidationRequest(Async)");
+ throw new ApiException("Missing the required parameter 'accountValidationsRequest' when calling bankAccountValidationRequest(Async)");
+ }
+
+
+ okhttp3.Call call = bankAccountValidationRequestCall(accountValidationsRequest, progressListener, progressRequestListener);
+ return call;
+
+
+
+
+
+ }
+
+ /**
+ * Visa Bank Account Validation Service
+ * The Visa Bank Account Validation Service is a new standalone product designed to validate customer's routing and bank account number combination for ACH transactions. Merchant's can use this standalone product to validate their customer's account prior to processing an ACH transaction against the customer's account to comply with Nacha's account validation mandate for Web-debit transactions.
+ * DISCLAIMER : Cybersource may allow Customer to access, use, and/or test a Cybersource product or service that may still be in development or has not been market-tested ("Beta Product") solely for the purpose of evaluating the functionality or marketability of the Beta Product (a "Beta Evaluation"). Notwithstanding any language to the contrary, the following terms shall apply with respect to Customer's participation in any Beta Evaluation (and the Beta Product(s)) accessed thereunder): The Parties will enter into a separate form agreement detailing the scope of the Beta Evaluation, requirements, pricing, the length of the beta evaluation period ("Beta Product Form"). Beta Products are not, and may not become, Transaction Services and have not yet been publicly released and are offered for the sole purpose of internal testing and non-commercial evaluation. Customer's use of the Beta Product shall be solely for the purpose of conducting the Beta Evaluation. Customer accepts all risks arising out of the access and use of the Beta Products. Cybersource may, in its sole discretion, at any time, terminate or discontinue the Beta Evaluation. Customer acknowledges and agrees that any Beta Product may still be in development and that Beta Product is provided "AS IS" and may not perform at the level of a commercially available service, may not operate as expected and may be modified prior to release. CYBERSOURCE SHALL NOT BE RESPONSIBLE OR LIABLE UNDER ANY CONTRACT, TORT (INCLUDING NEGLIGENCE), OR OTHERWISE RELATING TO A BETA PRODUCT OR THE BETA EVALUATION (A) FOR LOSS OR INACCURACY OF DATA OR COST OF PROCUREMENT OF SUBSTITUTE GOODS, SERVICES OR TECHNOLOGY, (B) ANY CLAIM, LOSSES, DAMAGES, OR CAUSE OF ACTION ARISING IN CONNECTION WITH THE BETA PRODUCT; OR (C) FOR ANY INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES INCLUDING, BUT NOT LIMITED TO, LOSS OF REVENUES AND LOSS OF PROFITS.
+ * @param accountValidationsRequest (required)
+ * @return InlineResponse20013
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
+ */
+ public InlineResponse20013 bankAccountValidationRequest(AccountValidationsRequest accountValidationsRequest) throws ApiException, ConfigException {
+ logger.info("CALL TO METHOD 'bankAccountValidationRequest' STARTED");
+ ApiResponse resp = bankAccountValidationRequestWithHttpInfo(accountValidationsRequest);
+ logger.info("CALL TO METHOD 'bankAccountValidationRequest' ENDED");
+ return resp.getData();
+ }
+
+ /**
+ * Visa Bank Account Validation Service
+ * The Visa Bank Account Validation Service is a new standalone product designed to validate customer's routing and bank account number combination for ACH transactions. Merchant's can use this standalone product to validate their customer's account prior to processing an ACH transaction against the customer's account to comply with Nacha's account validation mandate for Web-debit transactions.
+ * @param accountValidationsRequest (required)
+ * @return ApiResponse<InlineResponse20013>
+ * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
+ */
+ public ApiResponse bankAccountValidationRequestWithHttpInfo(AccountValidationsRequest accountValidationsRequest) throws ApiException, ConfigException {
+ this.apiClient.setComputationStartTime(System.nanoTime());
+ okhttp3.Call call = bankAccountValidationRequestValidateBeforeCall(accountValidationsRequest, null, null);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ return apiClient.execute(call, localVarReturnType);
+ }
+
+ /**
+ * Visa Bank Account Validation Service (asynchronously)
+ * The Visa Bank Account Validation Service is a new standalone product designed to validate customer's routing and bank account number combination for ACH transactions. Merchant's can use this standalone product to validate their customer's account prior to processing an ACH transaction against the customer's account to comply with Nacha's account validation mandate for Web-debit transactions.
+ * @param accountValidationsRequest (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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
+ */
+ public okhttp3.Call bankAccountValidationRequestAsync(AccountValidationsRequest accountValidationsRequest, final ApiCallback callback) throws ApiException, ConfigException {
+
+ this.apiClient.setComputationStartTime(System.nanoTime());
+ 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);
+ }
+ };
+ }
+
+ okhttp3.Call call = bankAccountValidationRequestValidateBeforeCall(accountValidationsRequest, progressListener, progressRequestListener);
+ Type localVarReturnType = new TypeToken(){}.getType();
+ apiClient.executeAsync(call, localVarReturnType, callback);
+ return call;
+ }
+}
diff --git a/src/main/java/Api/BatchesApi.java b/src/main/java/Api/BatchesApi.java
index e7578ef0c..f27a2717b 100644
--- a/src/main/java/Api/BatchesApi.java
+++ b/src/main/java/Api/BatchesApi.java
@@ -32,7 +32,7 @@
import Model.Body;
import Model.InlineResponse20010;
import Model.InlineResponse20011;
-import Model.InlineResponse2009;
+import Model.InlineResponse20012;
import Model.InlineResponse202;
import Model.InlineResponse4011;
@@ -76,6 +76,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getBatchReportCall(String batchId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -156,12 +157,13 @@ private okhttp3.Call getBatchReportValidateBeforeCall(String batchId, final Prog
* Retrieve a Batch Report
* **Get Batch Report**<br>This resource accepts a batch id and returns: - The batch status. - The total number of accepted, rejected, updated records. - The total number of card association responses. - The billable quantities of: - New Account Numbers (NAN) - New Expiry Dates (NED) - Account Closures (ACL) - Contact Card Holders (CCH) - Source record information including token ids, masked card number, expiration dates & card type. - Response record information including response code, reason, token ids, masked card number, expiration dates & card type.
* @param batchId Unique identification number assigned to the submitted request. (required)
- * @return InlineResponse20011
+ * @return InlineResponse20012
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public InlineResponse20011 getBatchReport(String batchId) throws ApiException, ConfigException {
+ public InlineResponse20012 getBatchReport(String batchId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getBatchReport' STARTED");
- ApiResponse resp = getBatchReportWithHttpInfo(batchId);
+ ApiResponse resp = getBatchReportWithHttpInfo(batchId);
logger.info("CALL TO METHOD 'getBatchReport' ENDED");
return resp.getData();
}
@@ -170,13 +172,14 @@ public InlineResponse20011 getBatchReport(String batchId) throws ApiException, C
* Retrieve a Batch Report
* **Get Batch Report**<br>This resource accepts a batch id and returns: - The batch status. - The total number of accepted, rejected, updated records. - The total number of card association responses. - The billable quantities of: - New Account Numbers (NAN) - New Expiry Dates (NED) - Account Closures (ACL) - Contact Card Holders (CCH) - Source record information including token ids, masked card number, expiration dates & card type. - Response record information including response code, reason, token ids, masked card number, expiration dates & card type.
* @param batchId Unique identification number assigned to the submitted request. (required)
- * @return ApiResponse<InlineResponse20011>
+ * @return ApiResponse<InlineResponse20012>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public ApiResponse getBatchReportWithHttpInfo(String batchId) throws ApiException, ConfigException {
+ public ApiResponse getBatchReportWithHttpInfo(String batchId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = getBatchReportValidateBeforeCall(batchId, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -187,8 +190,9 @@ public ApiResponse getBatchReportWithHttpInfo(String batchI
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call getBatchReportAsync(String batchId, final ApiCallback callback) throws ApiException, ConfigException {
+ public okhttp3.Call getBatchReportAsync(String batchId, final ApiCallback callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -211,7 +215,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = getBatchReportValidateBeforeCall(batchId, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
@@ -222,6 +226,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getBatchStatusCall(String batchId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -302,12 +307,13 @@ private okhttp3.Call getBatchStatusValidateBeforeCall(String batchId, final Prog
* Retrieve a Batch Status
* **Get Batch Status**<br>This resource accepts a batch id and returns: - The batch status. - The total number of accepted, rejected, updated records. - The total number of card association responses. - The billable quantities of: - New Account Numbers (NAN) - New Expiry Dates (NED) - Account Closures (ACL) - Contact Card Holders (CCH)
* @param batchId Unique identification number assigned to the submitted request. (required)
- * @return InlineResponse20010
+ * @return InlineResponse20011
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public InlineResponse20010 getBatchStatus(String batchId) throws ApiException, ConfigException {
+ public InlineResponse20011 getBatchStatus(String batchId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getBatchStatus' STARTED");
- ApiResponse resp = getBatchStatusWithHttpInfo(batchId);
+ ApiResponse resp = getBatchStatusWithHttpInfo(batchId);
logger.info("CALL TO METHOD 'getBatchStatus' ENDED");
return resp.getData();
}
@@ -316,13 +322,14 @@ public InlineResponse20010 getBatchStatus(String batchId) throws ApiException, C
* Retrieve a Batch Status
* **Get Batch Status**<br>This resource accepts a batch id and returns: - The batch status. - The total number of accepted, rejected, updated records. - The total number of card association responses. - The billable quantities of: - New Account Numbers (NAN) - New Expiry Dates (NED) - Account Closures (ACL) - Contact Card Holders (CCH)
* @param batchId Unique identification number assigned to the submitted request. (required)
- * @return ApiResponse<InlineResponse20010>
+ * @return ApiResponse<InlineResponse20011>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public ApiResponse getBatchStatusWithHttpInfo(String batchId) throws ApiException, ConfigException {
+ public ApiResponse getBatchStatusWithHttpInfo(String batchId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = getBatchStatusValidateBeforeCall(batchId, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -333,8 +340,9 @@ public ApiResponse getBatchStatusWithHttpInfo(String batchI
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call getBatchStatusAsync(String batchId, final ApiCallback callback) throws ApiException, ConfigException {
+ public okhttp3.Call getBatchStatusAsync(String batchId, final ApiCallback callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -357,7 +365,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = getBatchStatusValidateBeforeCall(batchId, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
@@ -371,6 +379,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getBatchesListCall(Long offset, Long limit, String fromDate, String toDate, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -455,12 +464,13 @@ private okhttp3.Call getBatchesListValidateBeforeCall(Long offset, Long limit, S
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. (optional, default to 20)
* @param fromDate ISO-8601 format: yyyyMMddTHHmmssZ (optional)
* @param toDate ISO-8601 format: yyyyMMddTHHmmssZ (optional)
- * @return InlineResponse2009
+ * @return InlineResponse20010
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public InlineResponse2009 getBatchesList(Long offset, Long limit, String fromDate, String toDate) throws ApiException, ConfigException {
+ public InlineResponse20010 getBatchesList(Long offset, Long limit, String fromDate, String toDate) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getBatchesList' STARTED");
- ApiResponse resp = getBatchesListWithHttpInfo(offset, limit, fromDate, toDate);
+ ApiResponse resp = getBatchesListWithHttpInfo(offset, limit, fromDate, toDate);
logger.info("CALL TO METHOD 'getBatchesList' ENDED");
return resp.getData();
}
@@ -472,13 +482,14 @@ public InlineResponse2009 getBatchesList(Long offset, Long limit, String fromDat
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. (optional, default to 20)
* @param fromDate ISO-8601 format: yyyyMMddTHHmmssZ (optional)
* @param toDate ISO-8601 format: yyyyMMddTHHmmssZ (optional)
- * @return ApiResponse<InlineResponse2009>
+ * @return ApiResponse<InlineResponse20010>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public ApiResponse getBatchesListWithHttpInfo(Long offset, Long limit, String fromDate, String toDate) throws ApiException, ConfigException {
+ public ApiResponse getBatchesListWithHttpInfo(Long offset, Long limit, String fromDate, String toDate) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = getBatchesListValidateBeforeCall(offset, limit, fromDate, toDate, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -492,8 +503,9 @@ public ApiResponse getBatchesListWithHttpInfo(Long offset, L
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call getBatchesListAsync(Long offset, Long limit, String fromDate, String toDate, final ApiCallback callback) throws ApiException, ConfigException {
+ public okhttp3.Call getBatchesListAsync(Long offset, Long limit, String fromDate, String toDate, final ApiCallback callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -516,7 +528,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = getBatchesListValidateBeforeCall(offset, limit, fromDate, toDate, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
@@ -527,6 +539,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postBatchCall(Body body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -605,6 +618,7 @@ private okhttp3.Call postBatchValidateBeforeCall(Body body, final ProgressRespon
* @param body (required)
* @return InlineResponse202
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InlineResponse202 postBatch(Body body) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postBatch' STARTED");
@@ -619,6 +633,7 @@ public InlineResponse202 postBatch(Body body) throws ApiException, ConfigExcepti
* @param body (required)
* @return ApiResponse<InlineResponse202>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse postBatchWithHttpInfo(Body body) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -634,6 +649,7 @@ public ApiResponse postBatchWithHttpInfo(Body body) throws Ap
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postBatchAsync(Body body, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/BillingAgreementsApi.java b/src/main/java/Api/BillingAgreementsApi.java
index cbd55a272..f69b8067e 100644
--- a/src/main/java/Api/BillingAgreementsApi.java
+++ b/src/main/java/Api/BillingAgreementsApi.java
@@ -79,6 +79,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call billingAgreementsDeRegistrationCall(ModifyBillingAgreement modifyBillingAgreement, String id, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -165,6 +166,7 @@ private okhttp3.Call billingAgreementsDeRegistrationValidateBeforeCall(ModifyBil
* @param id ID for de-registration or cancellation of Billing Agreement (required)
* @return PtsV2ModifyBillingAgreementPost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PtsV2ModifyBillingAgreementPost201Response billingAgreementsDeRegistration(ModifyBillingAgreement modifyBillingAgreement, String id) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'billingAgreementsDeRegistration' STARTED");
@@ -180,6 +182,7 @@ public PtsV2ModifyBillingAgreementPost201Response billingAgreementsDeRegistratio
* @param id ID for de-registration or cancellation of Billing Agreement (required)
* @return ApiResponse<PtsV2ModifyBillingAgreementPost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse billingAgreementsDeRegistrationWithHttpInfo(ModifyBillingAgreement modifyBillingAgreement, String id) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -196,6 +199,7 @@ public ApiResponse billingAgreements
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call billingAgreementsDeRegistrationAsync(ModifyBillingAgreement modifyBillingAgreement, String id, final ApiCallback callback) throws ApiException, ConfigException {
@@ -232,6 +236,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call billingAgreementsIntimationCall(IntimateBillingAgreement intimateBillingAgreement, String id, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -318,6 +323,7 @@ private okhttp3.Call billingAgreementsIntimationValidateBeforeCall(IntimateBilli
* @param id ID for intimation of Billing Agreement (required)
* @return PtsV2CreditsPost201Response1
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PtsV2CreditsPost201Response1 billingAgreementsIntimation(IntimateBillingAgreement intimateBillingAgreement, String id) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'billingAgreementsIntimation' STARTED");
@@ -333,6 +339,7 @@ public PtsV2CreditsPost201Response1 billingAgreementsIntimation(IntimateBillingA
* @param id ID for intimation of Billing Agreement (required)
* @return ApiResponse<PtsV2CreditsPost201Response1>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse billingAgreementsIntimationWithHttpInfo(IntimateBillingAgreement intimateBillingAgreement, String id) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -349,6 +356,7 @@ public ApiResponse billingAgreementsIntimationWith
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call billingAgreementsIntimationAsync(IntimateBillingAgreement intimateBillingAgreement, String id, final ApiCallback callback) throws ApiException, ConfigException {
@@ -384,6 +392,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call billingAgreementsRegistrationCall(CreateBillingAgreement createBillingAgreement, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -462,6 +471,7 @@ private okhttp3.Call billingAgreementsRegistrationValidateBeforeCall(CreateBilli
* @param createBillingAgreement (required)
* @return PtsV2CreateBillingAgreementPost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PtsV2CreateBillingAgreementPost201Response billingAgreementsRegistration(CreateBillingAgreement createBillingAgreement) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'billingAgreementsRegistration' STARTED");
@@ -476,6 +486,7 @@ public PtsV2CreateBillingAgreementPost201Response billingAgreementsRegistration(
* @param createBillingAgreement (required)
* @return ApiResponse<PtsV2CreateBillingAgreementPost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse billingAgreementsRegistrationWithHttpInfo(CreateBillingAgreement createBillingAgreement) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -491,6 +502,7 @@ public ApiResponse billingAgreements
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call billingAgreementsRegistrationAsync(CreateBillingAgreement createBillingAgreement, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/BinLookupApi.java b/src/main/java/Api/BinLookupApi.java
index 320575cb2..1099c0031 100644
--- a/src/main/java/Api/BinLookupApi.java
+++ b/src/main/java/Api/BinLookupApi.java
@@ -74,6 +74,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getAccountInfoCall(CreateBinLookupRequest createBinLookupRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -153,6 +154,7 @@ private okhttp3.Call getAccountInfoValidateBeforeCall(CreateBinLookupRequest cre
* @param createBinLookupRequest (required)
* @return InlineResponse2012
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InlineResponse2012 getAccountInfo(CreateBinLookupRequest createBinLookupRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getAccountInfo' STARTED");
@@ -167,6 +169,7 @@ public InlineResponse2012 getAccountInfo(CreateBinLookupRequest createBinLookupR
* @param createBinLookupRequest (required)
* @return ApiResponse<InlineResponse2012>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getAccountInfoWithHttpInfo(CreateBinLookupRequest createBinLookupRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -182,6 +185,7 @@ public ApiResponse getAccountInfoWithHttpInfo(CreateBinLooku
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getAccountInfoAsync(CreateBinLookupRequest createBinLookupRequest, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/CaptureApi.java b/src/main/java/Api/CaptureApi.java
index 86f881229..bc34d1b8d 100644
--- a/src/main/java/Api/CaptureApi.java
+++ b/src/main/java/Api/CaptureApi.java
@@ -75,6 +75,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call capturePaymentCall(CapturePaymentRequest capturePaymentRequest, String id, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -161,6 +162,7 @@ private okhttp3.Call capturePaymentValidateBeforeCall(CapturePaymentRequest capt
* @param id The payment ID returned from a previous payment request. This ID links the capture to the payment. (required)
* @return PtsV2PaymentsCapturesPost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PtsV2PaymentsCapturesPost201Response capturePayment(CapturePaymentRequest capturePaymentRequest, String id) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'capturePayment' STARTED");
@@ -176,6 +178,7 @@ public PtsV2PaymentsCapturesPost201Response capturePayment(CapturePaymentRequest
* @param id The payment ID returned from a previous payment request. This ID links the capture to the payment. (required)
* @return ApiResponse<PtsV2PaymentsCapturesPost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse capturePaymentWithHttpInfo(CapturePaymentRequest capturePaymentRequest, String id) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -192,6 +195,7 @@ public ApiResponse capturePaymentWithHttpI
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call capturePaymentAsync(CapturePaymentRequest capturePaymentRequest, String id, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/ChargebackDetailsApi.java b/src/main/java/Api/ChargebackDetailsApi.java
index b16a72f90..accae0f0b 100644
--- a/src/main/java/Api/ChargebackDetailsApi.java
+++ b/src/main/java/Api/ChargebackDetailsApi.java
@@ -74,6 +74,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getChargebackDetailsCall(DateTime startTime, DateTime endTime, String organizationId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -169,6 +170,7 @@ private okhttp3.Call getChargebackDetailsValidateBeforeCall(DateTime startTime,
* @param organizationId Valid Organization Id (optional)
* @return ReportingV3ChargebackDetailsGet200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ReportingV3ChargebackDetailsGet200Response getChargebackDetails(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getChargebackDetails' STARTED");
@@ -185,6 +187,7 @@ public ReportingV3ChargebackDetailsGet200Response getChargebackDetails(DateTime
* @param organizationId Valid Organization Id (optional)
* @return ApiResponse<ReportingV3ChargebackDetailsGet200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getChargebackDetailsWithHttpInfo(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -202,6 +205,7 @@ public ApiResponse getChargebackDeta
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getChargebackDetailsAsync(DateTime startTime, DateTime endTime, String organizationId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/ChargebackSummariesApi.java b/src/main/java/Api/ChargebackSummariesApi.java
index cc6860c74..d71c478a1 100644
--- a/src/main/java/Api/ChargebackSummariesApi.java
+++ b/src/main/java/Api/ChargebackSummariesApi.java
@@ -74,6 +74,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getChargebackSummariesCall(DateTime startTime, DateTime endTime, String organizationId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -169,6 +170,7 @@ private okhttp3.Call getChargebackSummariesValidateBeforeCall(DateTime startTime
* @param organizationId Valid Organization Id (optional)
* @return ReportingV3ChargebackSummariesGet200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ReportingV3ChargebackSummariesGet200Response getChargebackSummaries(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getChargebackSummaries' STARTED");
@@ -185,6 +187,7 @@ public ReportingV3ChargebackSummariesGet200Response getChargebackSummaries(DateT
* @param organizationId Valid Organization Id (optional)
* @return ApiResponse<ReportingV3ChargebackSummariesGet200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getChargebackSummariesWithHttpInfo(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -202,6 +205,7 @@ public ApiResponse getChargebackSu
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getChargebackSummariesAsync(DateTime startTime, DateTime endTime, String organizationId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/ConversionDetailsApi.java b/src/main/java/Api/ConversionDetailsApi.java
index c3e5fea89..2c3bb5ce6 100644
--- a/src/main/java/Api/ConversionDetailsApi.java
+++ b/src/main/java/Api/ConversionDetailsApi.java
@@ -75,6 +75,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getConversionDetailCall(DateTime startTime, DateTime endTime, String organizationId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -170,6 +171,7 @@ private okhttp3.Call getConversionDetailValidateBeforeCall(DateTime startTime, D
* @param organizationId Valid Organization Id (optional)
* @return ReportingV3ConversionDetailsGet200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ReportingV3ConversionDetailsGet200Response getConversionDetail(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getConversionDetail' STARTED");
@@ -186,6 +188,7 @@ public ReportingV3ConversionDetailsGet200Response getConversionDetail(DateTime s
* @param organizationId Valid Organization Id (optional)
* @return ApiResponse<ReportingV3ConversionDetailsGet200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getConversionDetailWithHttpInfo(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -203,6 +206,7 @@ public ApiResponse getConversionDeta
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getConversionDetailAsync(DateTime startTime, DateTime endTime, String organizationId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/CreateNewWebhooksApi.java b/src/main/java/Api/CreateNewWebhooksApi.java
index 70f14c197..3801db4a6 100644
--- a/src/main/java/Api/CreateNewWebhooksApi.java
+++ b/src/main/java/Api/CreateNewWebhooksApi.java
@@ -30,7 +30,7 @@
import Model.CreateWebhook;
-import Model.InlineResponse2003;
+import Model.InlineResponse2004;
import Model.InlineResponse2014;
import Model.InlineResponse2015;
import Model.SaveSymEgressKey;
@@ -75,6 +75,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call findProductsToSubscribeCall(String organizationId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -155,12 +156,13 @@ private okhttp3.Call findProductsToSubscribeValidateBeforeCall(String organizati
* Find Products You Can Subscribe To
* Retrieve a list of products and event types that your account is eligible for. These products and events are the ones that you may subscribe to in the next step of creating webhooks.
* @param organizationId The Organization Identifier. (required)
- * @return List<InlineResponse2003>
+ * @return List<InlineResponse2004>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public List findProductsToSubscribe(String organizationId) throws ApiException, ConfigException {
+ public List findProductsToSubscribe(String organizationId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'findProductsToSubscribe' STARTED");
- ApiResponse> resp = findProductsToSubscribeWithHttpInfo(organizationId);
+ ApiResponse> resp = findProductsToSubscribeWithHttpInfo(organizationId);
logger.info("CALL TO METHOD 'findProductsToSubscribe' ENDED");
return resp.getData();
}
@@ -169,13 +171,14 @@ public List findProductsToSubscribe(String organizationId) t
* Find Products You Can Subscribe To
* Retrieve a list of products and event types that your account is eligible for. These products and events are the ones that you may subscribe to in the next step of creating webhooks.
* @param organizationId The Organization Identifier. (required)
- * @return ApiResponse<List<InlineResponse2003>>
+ * @return ApiResponse<List<InlineResponse2004>>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public ApiResponse> findProductsToSubscribeWithHttpInfo(String organizationId) throws ApiException, ConfigException {
+ public ApiResponse> findProductsToSubscribeWithHttpInfo(String organizationId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = findProductsToSubscribeValidateBeforeCall(organizationId, null, null);
- Type localVarReturnType = new TypeToken>(){}.getType();
+ Type localVarReturnType = new TypeToken>(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -186,8 +189,9 @@ public ApiResponse> findProductsToSubscribeWithHttpInfo
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call findProductsToSubscribeAsync(String organizationId, final ApiCallback> callback) throws ApiException, ConfigException {
+ public okhttp3.Call findProductsToSubscribeAsync(String organizationId, final ApiCallback> callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -210,7 +214,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = findProductsToSubscribeValidateBeforeCall(organizationId, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken>(){}.getType();
+ Type localVarReturnType = new TypeToken>(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
@@ -221,6 +225,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call notificationSubscriptionsV2WebhooksPostCall(CreateWebhook createWebhook, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -293,6 +298,7 @@ private okhttp3.Call notificationSubscriptionsV2WebhooksPostValidateBeforeCall(C
* @param createWebhook The webhook payload (optional)
* @return InlineResponse2015
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InlineResponse2015 notificationSubscriptionsV2WebhooksPost(CreateWebhook createWebhook) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'notificationSubscriptionsV2WebhooksPost' STARTED");
@@ -307,6 +313,7 @@ public InlineResponse2015 notificationSubscriptionsV2WebhooksPost(CreateWebhook
* @param createWebhook The webhook payload (optional)
* @return ApiResponse<InlineResponse2015>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse notificationSubscriptionsV2WebhooksPostWithHttpInfo(CreateWebhook createWebhook) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -322,6 +329,7 @@ public ApiResponse notificationSubscriptionsV2WebhooksPostWi
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call notificationSubscriptionsV2WebhooksPostAsync(CreateWebhook createWebhook, final ApiCallback callback) throws ApiException, ConfigException {
@@ -360,6 +368,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call saveSymEgressKeyCall(String vCSenderOrganizationId, String vCPermissions, String vCCorrelationId, SaveSymEgressKey saveSymEgressKey, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -453,6 +462,7 @@ private okhttp3.Call saveSymEgressKeyValidateBeforeCall(String vCSenderOrganizat
* @param saveSymEgressKey Provide egress Symmetric key information to save (create or store or refresh) (optional)
* @return InlineResponse2014
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InlineResponse2014 saveSymEgressKey(String vCSenderOrganizationId, String vCPermissions, String vCCorrelationId, SaveSymEgressKey saveSymEgressKey) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'saveSymEgressKey' STARTED");
@@ -470,6 +480,7 @@ public InlineResponse2014 saveSymEgressKey(String vCSenderOrganizationId, String
* @param saveSymEgressKey Provide egress Symmetric key information to save (create or store or refresh) (optional)
* @return ApiResponse<InlineResponse2014>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse saveSymEgressKeyWithHttpInfo(String vCSenderOrganizationId, String vCPermissions, String vCCorrelationId, SaveSymEgressKey saveSymEgressKey) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -488,6 +499,7 @@ public ApiResponse saveSymEgressKeyWithHttpInfo(String vCSen
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call saveSymEgressKeyAsync(String vCSenderOrganizationId, String vCPermissions, String vCCorrelationId, SaveSymEgressKey saveSymEgressKey, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/CreditApi.java b/src/main/java/Api/CreditApi.java
index 20fac7be9..e80834b4e 100644
--- a/src/main/java/Api/CreditApi.java
+++ b/src/main/java/Api/CreditApi.java
@@ -74,6 +74,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call createCreditCall(CreateCreditRequest createCreditRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -152,6 +153,7 @@ private okhttp3.Call createCreditValidateBeforeCall(CreateCreditRequest createCr
* @param createCreditRequest (required)
* @return PtsV2CreditsPost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PtsV2CreditsPost201Response createCredit(CreateCreditRequest createCreditRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'createCredit' STARTED");
@@ -166,6 +168,7 @@ public PtsV2CreditsPost201Response createCredit(CreateCreditRequest createCredit
* @param createCreditRequest (required)
* @return ApiResponse<PtsV2CreditsPost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse createCreditWithHttpInfo(CreateCreditRequest createCreditRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -181,6 +184,7 @@ public ApiResponse createCreditWithHttpInfo(CreateC
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call createCreditAsync(CreateCreditRequest createCreditRequest, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/CustomerApi.java b/src/main/java/Api/CustomerApi.java
index d87a704a7..a89767744 100644
--- a/src/main/java/Api/CustomerApi.java
+++ b/src/main/java/Api/CustomerApi.java
@@ -80,6 +80,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteCustomerCall(String customerId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -164,6 +165,7 @@ private okhttp3.Call deleteCustomerValidateBeforeCall(String customerId, String
* @param customerId The Id of a Customer. (required)
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void deleteCustomer(String customerId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'deleteCustomer' STARTED");
@@ -178,6 +180,7 @@ public void deleteCustomer(String customerId, String profileId) throws ApiExcept
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse deleteCustomerWithHttpInfo(String customerId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -193,6 +196,7 @@ public ApiResponse deleteCustomerWithHttpInfo(String customerId, String pr
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteCustomerAsync(String customerId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -228,6 +232,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerCall(String customerId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -313,6 +318,7 @@ private okhttp3.Call getCustomerValidateBeforeCall(String customerId, String pro
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return PostCustomerRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostCustomerRequest getCustomer(String customerId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getCustomer' STARTED");
@@ -328,6 +334,7 @@ public PostCustomerRequest getCustomer(String customerId, String profileId) thro
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<PostCustomerRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getCustomerWithHttpInfo(String customerId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -344,6 +351,7 @@ public ApiResponse getCustomerWithHttpInfo(String customerI
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerAsync(String customerId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -382,6 +390,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchCustomerCall(String customerId, PatchCustomerRequest patchCustomerRequest, String profileId, String ifMatch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -474,6 +483,7 @@ private okhttp3.Call patchCustomerValidateBeforeCall(String customerId, PatchCus
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return PatchCustomerRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PatchCustomerRequest patchCustomer(String customerId, PatchCustomerRequest patchCustomerRequest, String profileId, String ifMatch) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'patchCustomer' STARTED");
@@ -491,6 +501,7 @@ public PatchCustomerRequest patchCustomer(String customerId, PatchCustomerReques
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return ApiResponse<PatchCustomerRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse patchCustomerWithHttpInfo(String customerId, PatchCustomerRequest patchCustomerRequest, String profileId, String ifMatch) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -509,6 +520,7 @@ public ApiResponse patchCustomerWithHttpInfo(String custom
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchCustomerAsync(String customerId, PatchCustomerRequest patchCustomerRequest, String profileId, String ifMatch, final ApiCallback callback) throws ApiException, ConfigException {
@@ -545,6 +557,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postCustomerCall(PostCustomerRequest postCustomerRequest, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -626,6 +639,7 @@ private okhttp3.Call postCustomerValidateBeforeCall(PostCustomerRequest postCust
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return PostCustomerRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostCustomerRequest postCustomer(PostCustomerRequest postCustomerRequest, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postCustomer' STARTED");
@@ -641,6 +655,7 @@ public PostCustomerRequest postCustomer(PostCustomerRequest postCustomerRequest,
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<PostCustomerRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse postCustomerWithHttpInfo(PostCustomerRequest postCustomerRequest, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -657,6 +672,7 @@ public ApiResponse postCustomerWithHttpInfo(PostCustomerReq
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postCustomerAsync(PostCustomerRequest postCustomerRequest, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/CustomerPaymentInstrumentApi.java b/src/main/java/Api/CustomerPaymentInstrumentApi.java
index 4e224558d..f866e2b41 100644
--- a/src/main/java/Api/CustomerPaymentInstrumentApi.java
+++ b/src/main/java/Api/CustomerPaymentInstrumentApi.java
@@ -82,6 +82,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteCustomerPaymentInstrumentCall(String customerId, String paymentInstrumentId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -174,6 +175,7 @@ private okhttp3.Call deleteCustomerPaymentInstrumentValidateBeforeCall(String cu
* @param paymentInstrumentId The Id of a payment instrument. (required)
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void deleteCustomerPaymentInstrument(String customerId, String paymentInstrumentId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'deleteCustomerPaymentInstrument' STARTED");
@@ -189,6 +191,7 @@ public void deleteCustomerPaymentInstrument(String customerId, String paymentIns
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse deleteCustomerPaymentInstrumentWithHttpInfo(String customerId, String paymentInstrumentId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -205,6 +208,7 @@ public ApiResponse deleteCustomerPaymentInstrumentWithHttpInfo(String cust
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteCustomerPaymentInstrumentAsync(String customerId, String paymentInstrumentId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -241,6 +245,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerPaymentInstrumentCall(String customerId, String paymentInstrumentId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -334,6 +339,7 @@ private okhttp3.Call getCustomerPaymentInstrumentValidateBeforeCall(String custo
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return PostCustomerPaymentInstrumentRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostCustomerPaymentInstrumentRequest getCustomerPaymentInstrument(String customerId, String paymentInstrumentId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getCustomerPaymentInstrument' STARTED");
@@ -350,6 +356,7 @@ public PostCustomerPaymentInstrumentRequest getCustomerPaymentInstrument(String
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<PostCustomerPaymentInstrumentRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getCustomerPaymentInstrumentWithHttpInfo(String customerId, String paymentInstrumentId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -367,6 +374,7 @@ public ApiResponse getCustomerPaymentInstr
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerPaymentInstrumentAsync(String customerId, String paymentInstrumentId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -405,6 +413,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerPaymentInstrumentsListCall(String customerId, String profileId, Long offset, Long limit, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -496,6 +505,7 @@ private okhttp3.Call getCustomerPaymentInstrumentsListValidateBeforeCall(String
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)
* @return PaymentInstrumentList
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PaymentInstrumentList getCustomerPaymentInstrumentsList(String customerId, String profileId, Long offset, Long limit) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getCustomerPaymentInstrumentsList' STARTED");
@@ -513,6 +523,7 @@ public PaymentInstrumentList getCustomerPaymentInstrumentsList(String customerId
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)
* @return ApiResponse<PaymentInstrumentList>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getCustomerPaymentInstrumentsListWithHttpInfo(String customerId, String profileId, Long offset, Long limit) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -531,6 +542,7 @@ public ApiResponse getCustomerPaymentInstrumentsListWithH
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerPaymentInstrumentsListAsync(String customerId, String profileId, Long offset, Long limit, final ApiCallback callback) throws ApiException, ConfigException {
@@ -570,6 +582,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchCustomersPaymentInstrumentCall(String customerId, String paymentInstrumentId, PatchCustomerPaymentInstrumentRequest patchCustomerPaymentInstrumentRequest, String profileId, String ifMatch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -670,6 +683,7 @@ private okhttp3.Call patchCustomersPaymentInstrumentValidateBeforeCall(String cu
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return PatchCustomerPaymentInstrumentRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PatchCustomerPaymentInstrumentRequest patchCustomersPaymentInstrument(String customerId, String paymentInstrumentId, PatchCustomerPaymentInstrumentRequest patchCustomerPaymentInstrumentRequest, String profileId, String ifMatch) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'patchCustomersPaymentInstrument' STARTED");
@@ -688,6 +702,7 @@ public PatchCustomerPaymentInstrumentRequest patchCustomersPaymentInstrument(Str
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return ApiResponse<PatchCustomerPaymentInstrumentRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse patchCustomersPaymentInstrumentWithHttpInfo(String customerId, String paymentInstrumentId, PatchCustomerPaymentInstrumentRequest patchCustomerPaymentInstrumentRequest, String profileId, String ifMatch) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -707,6 +722,7 @@ public ApiResponse patchCustomersPaymentI
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchCustomersPaymentInstrumentAsync(String customerId, String paymentInstrumentId, PatchCustomerPaymentInstrumentRequest patchCustomerPaymentInstrumentRequest, String profileId, String ifMatch, final ApiCallback callback) throws ApiException, ConfigException {
@@ -744,6 +760,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postCustomerPaymentInstrumentCall(String customerId, PostCustomerPaymentInstrumentRequest postCustomerPaymentInstrumentRequest, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -833,6 +850,7 @@ private okhttp3.Call postCustomerPaymentInstrumentValidateBeforeCall(String cust
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return PostCustomerPaymentInstrumentRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostCustomerPaymentInstrumentRequest postCustomerPaymentInstrument(String customerId, PostCustomerPaymentInstrumentRequest postCustomerPaymentInstrumentRequest, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postCustomerPaymentInstrument' STARTED");
@@ -849,6 +867,7 @@ public PostCustomerPaymentInstrumentRequest postCustomerPaymentInstrument(String
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<PostCustomerPaymentInstrumentRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse postCustomerPaymentInstrumentWithHttpInfo(String customerId, PostCustomerPaymentInstrumentRequest postCustomerPaymentInstrumentRequest, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -866,6 +885,7 @@ public ApiResponse postCustomerPaymentInst
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postCustomerPaymentInstrumentAsync(String customerId, PostCustomerPaymentInstrumentRequest postCustomerPaymentInstrumentRequest, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/CustomerShippingAddressApi.java b/src/main/java/Api/CustomerShippingAddressApi.java
index 16db5ea13..dfbf1467c 100644
--- a/src/main/java/Api/CustomerShippingAddressApi.java
+++ b/src/main/java/Api/CustomerShippingAddressApi.java
@@ -82,6 +82,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteCustomerShippingAddressCall(String customerId, String shippingAddressId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -174,6 +175,7 @@ private okhttp3.Call deleteCustomerShippingAddressValidateBeforeCall(String cust
* @param shippingAddressId The Id of a shipping address. (required)
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void deleteCustomerShippingAddress(String customerId, String shippingAddressId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'deleteCustomerShippingAddress' STARTED");
@@ -189,6 +191,7 @@ public void deleteCustomerShippingAddress(String customerId, String shippingAddr
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse deleteCustomerShippingAddressWithHttpInfo(String customerId, String shippingAddressId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -205,6 +208,7 @@ public ApiResponse deleteCustomerShippingAddressWithHttpInfo(String custom
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteCustomerShippingAddressAsync(String customerId, String shippingAddressId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -241,6 +245,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerShippingAddressCall(String customerId, String shippingAddressId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -334,6 +339,7 @@ private okhttp3.Call getCustomerShippingAddressValidateBeforeCall(String custome
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return PostCustomerShippingAddressRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostCustomerShippingAddressRequest getCustomerShippingAddress(String customerId, String shippingAddressId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getCustomerShippingAddress' STARTED");
@@ -350,6 +356,7 @@ public PostCustomerShippingAddressRequest getCustomerShippingAddress(String cust
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<PostCustomerShippingAddressRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getCustomerShippingAddressWithHttpInfo(String customerId, String shippingAddressId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -367,6 +374,7 @@ public ApiResponse getCustomerShippingAddres
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerShippingAddressAsync(String customerId, String shippingAddressId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -405,6 +413,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerShippingAddressesListCall(String customerId, String profileId, Long offset, Long limit, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -496,6 +505,7 @@ private okhttp3.Call getCustomerShippingAddressesListValidateBeforeCall(String c
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)
* @return ShippingAddressListForCustomer
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ShippingAddressListForCustomer getCustomerShippingAddressesList(String customerId, String profileId, Long offset, Long limit) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getCustomerShippingAddressesList' STARTED");
@@ -513,6 +523,7 @@ public ShippingAddressListForCustomer getCustomerShippingAddressesList(String cu
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)
* @return ApiResponse<ShippingAddressListForCustomer>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getCustomerShippingAddressesListWithHttpInfo(String customerId, String profileId, Long offset, Long limit) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -531,6 +542,7 @@ public ApiResponse getCustomerShippingAddressesL
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getCustomerShippingAddressesListAsync(String customerId, String profileId, Long offset, Long limit, final ApiCallback callback) throws ApiException, ConfigException {
@@ -570,6 +582,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchCustomersShippingAddressCall(String customerId, String shippingAddressId, PatchCustomerShippingAddressRequest patchCustomerShippingAddressRequest, String profileId, String ifMatch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -670,6 +683,7 @@ private okhttp3.Call patchCustomersShippingAddressValidateBeforeCall(String cust
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return PatchCustomerShippingAddressRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PatchCustomerShippingAddressRequest patchCustomersShippingAddress(String customerId, String shippingAddressId, PatchCustomerShippingAddressRequest patchCustomerShippingAddressRequest, String profileId, String ifMatch) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'patchCustomersShippingAddress' STARTED");
@@ -688,6 +702,7 @@ public PatchCustomerShippingAddressRequest patchCustomersShippingAddress(String
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return ApiResponse<PatchCustomerShippingAddressRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse patchCustomersShippingAddressWithHttpInfo(String customerId, String shippingAddressId, PatchCustomerShippingAddressRequest patchCustomerShippingAddressRequest, String profileId, String ifMatch) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -707,6 +722,7 @@ public ApiResponse patchCustomersShippingAd
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchCustomersShippingAddressAsync(String customerId, String shippingAddressId, PatchCustomerShippingAddressRequest patchCustomerShippingAddressRequest, String profileId, String ifMatch, final ApiCallback callback) throws ApiException, ConfigException {
@@ -744,6 +760,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postCustomerShippingAddressCall(String customerId, PostCustomerShippingAddressRequest postCustomerShippingAddressRequest, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -833,6 +850,7 @@ private okhttp3.Call postCustomerShippingAddressValidateBeforeCall(String custom
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return PostCustomerShippingAddressRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostCustomerShippingAddressRequest postCustomerShippingAddress(String customerId, PostCustomerShippingAddressRequest postCustomerShippingAddressRequest, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postCustomerShippingAddress' STARTED");
@@ -849,6 +867,7 @@ public PostCustomerShippingAddressRequest postCustomerShippingAddress(String cus
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<PostCustomerShippingAddressRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse postCustomerShippingAddressWithHttpInfo(String customerId, PostCustomerShippingAddressRequest postCustomerShippingAddressRequest, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -866,6 +885,7 @@ public ApiResponse postCustomerShippingAddre
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postCustomerShippingAddressAsync(String customerId, PostCustomerShippingAddressRequest postCustomerShippingAddressRequest, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/DecisionManagerApi.java b/src/main/java/Api/DecisionManagerApi.java
index 724b28354..840a704e1 100644
--- a/src/main/java/Api/DecisionManagerApi.java
+++ b/src/main/java/Api/DecisionManagerApi.java
@@ -89,6 +89,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call actionDecisionManagerCaseCall(String id, CaseManagementActionsRequest caseManagementActionsRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -175,6 +176,7 @@ private okhttp3.Call actionDecisionManagerCaseValidateBeforeCall(String id, Case
* @param caseManagementActionsRequest (required)
* @return InlineResponse2001
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InlineResponse2001 actionDecisionManagerCase(String id, CaseManagementActionsRequest caseManagementActionsRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'actionDecisionManagerCase' STARTED");
@@ -190,6 +192,7 @@ public InlineResponse2001 actionDecisionManagerCase(String id, CaseManagementAct
* @param caseManagementActionsRequest (required)
* @return ApiResponse<InlineResponse2001>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse actionDecisionManagerCaseWithHttpInfo(String id, CaseManagementActionsRequest caseManagementActionsRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -206,6 +209,7 @@ public ApiResponse actionDecisionManagerCaseWithHttpInfo(Str
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call actionDecisionManagerCaseAsync(String id, CaseManagementActionsRequest caseManagementActionsRequest, final ApiCallback callback) throws ApiException, ConfigException {
@@ -242,6 +246,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call addNegativeCall(String type, AddNegativeListRequest addNegativeListRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -328,6 +333,7 @@ private okhttp3.Call addNegativeValidateBeforeCall(String type, AddNegativeListR
* @param addNegativeListRequest (required)
* @return RiskV1UpdatePost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public RiskV1UpdatePost201Response addNegative(String type, AddNegativeListRequest addNegativeListRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'addNegative' STARTED");
@@ -343,6 +349,7 @@ public RiskV1UpdatePost201Response addNegative(String type, AddNegativeListReque
* @param addNegativeListRequest (required)
* @return ApiResponse<RiskV1UpdatePost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse addNegativeWithHttpInfo(String type, AddNegativeListRequest addNegativeListRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -359,6 +366,7 @@ public ApiResponse addNegativeWithHttpInfo(String t
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call addNegativeAsync(String type, AddNegativeListRequest addNegativeListRequest, final ApiCallback callback) throws ApiException, ConfigException {
@@ -395,6 +403,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call commentDecisionManagerCaseCall(String id, CaseManagementCommentsRequest caseManagementCommentsRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -481,6 +490,7 @@ private okhttp3.Call commentDecisionManagerCaseValidateBeforeCall(String id, Cas
* @param caseManagementCommentsRequest (required)
* @return InlineResponse2011
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InlineResponse2011 commentDecisionManagerCase(String id, CaseManagementCommentsRequest caseManagementCommentsRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'commentDecisionManagerCase' STARTED");
@@ -496,6 +506,7 @@ public InlineResponse2011 commentDecisionManagerCase(String id, CaseManagementCo
* @param caseManagementCommentsRequest (required)
* @return ApiResponse<InlineResponse2011>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse commentDecisionManagerCaseWithHttpInfo(String id, CaseManagementCommentsRequest caseManagementCommentsRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -512,6 +523,7 @@ public ApiResponse commentDecisionManagerCaseWithHttpInfo(St
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call commentDecisionManagerCaseAsync(String id, CaseManagementCommentsRequest caseManagementCommentsRequest, final ApiCallback callback) throws ApiException, ConfigException {
@@ -547,6 +559,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call createBundledDecisionManagerCaseCall(CreateBundledDecisionManagerCaseRequest createBundledDecisionManagerCaseRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -625,6 +638,7 @@ private okhttp3.Call createBundledDecisionManagerCaseValidateBeforeCall(CreateBu
* @param createBundledDecisionManagerCaseRequest (required)
* @return RiskV1DecisionsPost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public RiskV1DecisionsPost201Response createBundledDecisionManagerCase(CreateBundledDecisionManagerCaseRequest createBundledDecisionManagerCaseRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'createBundledDecisionManagerCase' STARTED");
@@ -639,6 +653,7 @@ public RiskV1DecisionsPost201Response createBundledDecisionManagerCase(CreateBun
* @param createBundledDecisionManagerCaseRequest (required)
* @return ApiResponse<RiskV1DecisionsPost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse createBundledDecisionManagerCaseWithHttpInfo(CreateBundledDecisionManagerCaseRequest createBundledDecisionManagerCaseRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -654,6 +669,7 @@ public ApiResponse createBundledDecisionManagerC
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call createBundledDecisionManagerCaseAsync(CreateBundledDecisionManagerCaseRequest createBundledDecisionManagerCaseRequest, final ApiCallback callback) throws ApiException, ConfigException {
@@ -690,6 +706,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call fraudUpdateCall(String id, FraudMarkingActionRequest fraudMarkingActionRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -776,6 +793,7 @@ private okhttp3.Call fraudUpdateValidateBeforeCall(String id, FraudMarkingAction
* @param fraudMarkingActionRequest (required)
* @return RiskV1UpdatePost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public RiskV1UpdatePost201Response fraudUpdate(String id, FraudMarkingActionRequest fraudMarkingActionRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'fraudUpdate' STARTED");
@@ -791,6 +809,7 @@ public RiskV1UpdatePost201Response fraudUpdate(String id, FraudMarkingActionRequ
* @param fraudMarkingActionRequest (required)
* @return ApiResponse<RiskV1UpdatePost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse fraudUpdateWithHttpInfo(String id, FraudMarkingActionRequest fraudMarkingActionRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -807,6 +826,7 @@ public ApiResponse fraudUpdateWithHttpInfo(String i
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call fraudUpdateAsync(String id, FraudMarkingActionRequest fraudMarkingActionRequest, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/DeviceDeAssociationApi.java b/src/main/java/Api/DeviceDeAssociationApi.java
index 57084d193..2d59038f7 100644
--- a/src/main/java/Api/DeviceDeAssociationApi.java
+++ b/src/main/java/Api/DeviceDeAssociationApi.java
@@ -31,12 +31,12 @@
import Model.DeAssociationRequestBody;
import Model.DeviceDeAssociateV3Request;
-import Model.InlineResponse2007;
+import Model.InlineResponse2008;
import Model.InlineResponse206;
import Model.InlineResponse4008;
import Model.InlineResponse401;
import Model.InlineResponse4032;
-import Model.InlineResponse4043;
+import Model.InlineResponse4044;
import Model.InlineResponse5003;
import java.lang.reflect.Type;
@@ -79,6 +79,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteTerminalAssociationCall(DeAssociationRequestBody deAssociationRequestBody, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -156,6 +157,7 @@ private okhttp3.Call deleteTerminalAssociationValidateBeforeCall(DeAssociationRe
* The current association of the device will be removed and will be assigned back to parent in the hierarchy based on internal logic
* @param deAssociationRequestBody de association of the deviceId in the request body. (required)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void deleteTerminalAssociation(DeAssociationRequestBody deAssociationRequestBody) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'deleteTerminalAssociation' STARTED");
@@ -169,6 +171,7 @@ public void deleteTerminalAssociation(DeAssociationRequestBody deAssociationRequ
* @param deAssociationRequestBody de association of the deviceId in the request body. (required)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse deleteTerminalAssociationWithHttpInfo(DeAssociationRequestBody deAssociationRequestBody) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -183,6 +186,7 @@ public ApiResponse deleteTerminalAssociationWithHttpInfo(DeAssociationRequ
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteTerminalAssociationAsync(DeAssociationRequestBody deAssociationRequestBody, final ApiCallback callback) throws ApiException, ConfigException {
@@ -217,6 +221,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postDeAssociateV3TerminalCall(List deviceDeAssociateV3Request, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -293,12 +298,13 @@ private okhttp3.Call postDeAssociateV3TerminalValidateBeforeCall(List postDeAssociateV3Terminal(List deviceDeAssociateV3Request) throws ApiException, ConfigException {
+ public List postDeAssociateV3Terminal(List deviceDeAssociateV3Request) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postDeAssociateV3Terminal' STARTED");
- ApiResponse> resp = postDeAssociateV3TerminalWithHttpInfo(deviceDeAssociateV3Request);
+ ApiResponse> resp = postDeAssociateV3TerminalWithHttpInfo(deviceDeAssociateV3Request);
logger.info("CALL TO METHOD 'postDeAssociateV3Terminal' ENDED");
return resp.getData();
}
@@ -307,13 +313,14 @@ public List postDeAssociateV3Terminal(List> postDeAssociateV3TerminalWithHttpInfo(List deviceDeAssociateV3Request) throws ApiException, ConfigException {
+ public ApiResponse> postDeAssociateV3TerminalWithHttpInfo(List deviceDeAssociateV3Request) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = postDeAssociateV3TerminalValidateBeforeCall(deviceDeAssociateV3Request, null, null);
- Type localVarReturnType = new TypeToken>(){}.getType();
+ Type localVarReturnType = new TypeToken>(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -324,8 +331,9 @@ public ApiResponse> postDeAssociateV3TerminalWithHttpIn
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call postDeAssociateV3TerminalAsync(List deviceDeAssociateV3Request, final ApiCallback> callback) throws ApiException, ConfigException {
+ public okhttp3.Call postDeAssociateV3TerminalAsync(List deviceDeAssociateV3Request, final ApiCallback> callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -348,7 +356,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = postDeAssociateV3TerminalValidateBeforeCall(deviceDeAssociateV3Request, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken>(){}.getType();
+ Type localVarReturnType = new TypeToken>(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
diff --git a/src/main/java/Api/DeviceSearchApi.java b/src/main/java/Api/DeviceSearchApi.java
index 80ad0c355..8592249bd 100644
--- a/src/main/java/Api/DeviceSearchApi.java
+++ b/src/main/java/Api/DeviceSearchApi.java
@@ -29,12 +29,12 @@
import java.io.InputStream;
-import Model.InlineResponse2006;
-import Model.InlineResponse2008;
+import Model.InlineResponse2007;
+import Model.InlineResponse2009;
import Model.InlineResponse4008;
import Model.InlineResponse401;
import Model.InlineResponse4032;
-import Model.InlineResponse4043;
+import Model.InlineResponse4044;
import Model.InlineResponse5003;
import Model.PostDeviceSearchRequest;
import Model.PostDeviceSearchRequestV3;
@@ -79,6 +79,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postSearchQueryCall(PostDeviceSearchRequest postDeviceSearchRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -155,12 +156,13 @@ private okhttp3.Call postSearchQueryValidateBeforeCall(PostDeviceSearchRequest p
* Retrieve List of Devices for a given search query V2
* Retrieves list of terminals in paginated format.
* @param postDeviceSearchRequest (required)
- * @return InlineResponse2006
+ * @return InlineResponse2007
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public InlineResponse2006 postSearchQuery(PostDeviceSearchRequest postDeviceSearchRequest) throws ApiException, ConfigException {
+ public InlineResponse2007 postSearchQuery(PostDeviceSearchRequest postDeviceSearchRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postSearchQuery' STARTED");
- ApiResponse resp = postSearchQueryWithHttpInfo(postDeviceSearchRequest);
+ ApiResponse resp = postSearchQueryWithHttpInfo(postDeviceSearchRequest);
logger.info("CALL TO METHOD 'postSearchQuery' ENDED");
return resp.getData();
}
@@ -169,13 +171,14 @@ public InlineResponse2006 postSearchQuery(PostDeviceSearchRequest postDeviceSear
* Retrieve List of Devices for a given search query V2
* Retrieves list of terminals in paginated format.
* @param postDeviceSearchRequest (required)
- * @return ApiResponse<InlineResponse2006>
+ * @return ApiResponse<InlineResponse2007>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public ApiResponse postSearchQueryWithHttpInfo(PostDeviceSearchRequest postDeviceSearchRequest) throws ApiException, ConfigException {
+ public ApiResponse postSearchQueryWithHttpInfo(PostDeviceSearchRequest postDeviceSearchRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = postSearchQueryValidateBeforeCall(postDeviceSearchRequest, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -186,8 +189,9 @@ public ApiResponse postSearchQueryWithHttpInfo(PostDeviceSea
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call postSearchQueryAsync(PostDeviceSearchRequest postDeviceSearchRequest, final ApiCallback callback) throws ApiException, ConfigException {
+ public okhttp3.Call postSearchQueryAsync(PostDeviceSearchRequest postDeviceSearchRequest, final ApiCallback callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -210,7 +214,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = postSearchQueryValidateBeforeCall(postDeviceSearchRequest, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
@@ -221,6 +225,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postSearchQueryV3Call(PostDeviceSearchRequestV3 postDeviceSearchRequestV3, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -297,12 +302,13 @@ private okhttp3.Call postSearchQueryV3ValidateBeforeCall(PostDeviceSearchRequest
* Retrieve List of Devices for a given search query
* Search for devices matching a given search query. The search query supports serialNumber, readerId, terminalId, status, statusChangeReason or organizationId Matching results are paginated.
* @param postDeviceSearchRequestV3 (required)
- * @return InlineResponse2008
+ * @return InlineResponse2009
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public InlineResponse2008 postSearchQueryV3(PostDeviceSearchRequestV3 postDeviceSearchRequestV3) throws ApiException, ConfigException {
+ public InlineResponse2009 postSearchQueryV3(PostDeviceSearchRequestV3 postDeviceSearchRequestV3) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postSearchQueryV3' STARTED");
- ApiResponse resp = postSearchQueryV3WithHttpInfo(postDeviceSearchRequestV3);
+ ApiResponse resp = postSearchQueryV3WithHttpInfo(postDeviceSearchRequestV3);
logger.info("CALL TO METHOD 'postSearchQueryV3' ENDED");
return resp.getData();
}
@@ -311,13 +317,14 @@ public InlineResponse2008 postSearchQueryV3(PostDeviceSearchRequestV3 postDevice
* Retrieve List of Devices for a given search query
* Search for devices matching a given search query. The search query supports serialNumber, readerId, terminalId, status, statusChangeReason or organizationId Matching results are paginated.
* @param postDeviceSearchRequestV3 (required)
- * @return ApiResponse<InlineResponse2008>
+ * @return ApiResponse<InlineResponse2009>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public ApiResponse postSearchQueryV3WithHttpInfo(PostDeviceSearchRequestV3 postDeviceSearchRequestV3) throws ApiException, ConfigException {
+ public ApiResponse postSearchQueryV3WithHttpInfo(PostDeviceSearchRequestV3 postDeviceSearchRequestV3) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
okhttp3.Call call = postSearchQueryV3ValidateBeforeCall(postDeviceSearchRequestV3, null, null);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -328,8 +335,9 @@ public ApiResponse postSearchQueryV3WithHttpInfo(PostDeviceS
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
- public okhttp3.Call postSearchQueryV3Async(PostDeviceSearchRequestV3 postDeviceSearchRequestV3, final ApiCallback callback) throws ApiException, ConfigException {
+ public okhttp3.Call postSearchQueryV3Async(PostDeviceSearchRequestV3 postDeviceSearchRequestV3, final ApiCallback callback) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
ProgressResponseBody.ProgressListener progressListener = null;
@@ -352,7 +360,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
}
okhttp3.Call call = postSearchQueryV3ValidateBeforeCall(postDeviceSearchRequestV3, progressListener, progressRequestListener);
- Type localVarReturnType = new TypeToken(){}.getType();
+ Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
diff --git a/src/main/java/Api/DownloadDtdApi.java b/src/main/java/Api/DownloadDtdApi.java
index a92ee954c..6e2c0a388 100644
--- a/src/main/java/Api/DownloadDtdApi.java
+++ b/src/main/java/Api/DownloadDtdApi.java
@@ -70,6 +70,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getDTDV2Call(String reportDefinitionNameVersion, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -151,6 +152,7 @@ private okhttp3.Call getDTDV2ValidateBeforeCall(String reportDefinitionNameVersi
* Used to download DTDs for reports on no-auth.
* @param reportDefinitionNameVersion Name and version of DTD file to download. Some DTDs only have one version. In that case version name is not needed. Some example values are ctdr-1.0, tdr, pbdr-1.1 (required)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void getDTDV2(String reportDefinitionNameVersion) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getDTDV2' STARTED");
@@ -164,6 +166,7 @@ public void getDTDV2(String reportDefinitionNameVersion) throws ApiException, Co
* @param reportDefinitionNameVersion Name and version of DTD file to download. Some DTDs only have one version. In that case version name is not needed. Some example values are ctdr-1.0, tdr, pbdr-1.1 (required)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getDTDV2WithHttpInfo(String reportDefinitionNameVersion) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -178,6 +181,7 @@ public ApiResponse getDTDV2WithHttpInfo(String reportDefinitionNameVersion
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getDTDV2Async(String reportDefinitionNameVersion, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/DownloadXsdApi.java b/src/main/java/Api/DownloadXsdApi.java
index 24ceabf33..c9b784694 100644
--- a/src/main/java/Api/DownloadXsdApi.java
+++ b/src/main/java/Api/DownloadXsdApi.java
@@ -70,6 +70,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getXSDV2Call(String reportDefinitionNameVersion, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -151,6 +152,7 @@ private okhttp3.Call getXSDV2ValidateBeforeCall(String reportDefinitionNameVersi
* Used to download XSDs for reports on no-auth.
* @param reportDefinitionNameVersion Name and version of XSD file to download. Some XSDs only have one version. In that case version name is not needed. Some example values are DecisionManagerDetailReport, DecisionManagerTypes (required)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void getXSDV2(String reportDefinitionNameVersion) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getXSDV2' STARTED");
@@ -164,6 +166,7 @@ public void getXSDV2(String reportDefinitionNameVersion) throws ApiException, Co
* @param reportDefinitionNameVersion Name and version of XSD file to download. Some XSDs only have one version. In that case version name is not needed. Some example values are DecisionManagerDetailReport, DecisionManagerTypes (required)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getXSDV2WithHttpInfo(String reportDefinitionNameVersion) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -178,6 +181,7 @@ public ApiResponse getXSDV2WithHttpInfo(String reportDefinitionNameVersion
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getXSDV2Async(String reportDefinitionNameVersion, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/EmvTagDetailsApi.java b/src/main/java/Api/EmvTagDetailsApi.java
index 78352d5c0..958c95beb 100644
--- a/src/main/java/Api/EmvTagDetailsApi.java
+++ b/src/main/java/Api/EmvTagDetailsApi.java
@@ -72,6 +72,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getEmvTagsCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -146,6 +147,7 @@ private okhttp3.Call getEmvTagsValidateBeforeCall(final ProgressResponseBody.Pro
* Returns the entire EMV tag dictionary
* @return TssV2GetEmvTags200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public TssV2GetEmvTags200Response getEmvTags() throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getEmvTags' STARTED");
@@ -159,6 +161,7 @@ public TssV2GetEmvTags200Response getEmvTags() throws ApiException, ConfigExcept
* Returns the entire EMV tag dictionary
* @return ApiResponse<TssV2GetEmvTags200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getEmvTagsWithHttpInfo() throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -173,6 +176,7 @@ public ApiResponse getEmvTagsWithHttpInfo() throws A
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getEmvTagsAsync(final ApiCallback callback) throws ApiException, ConfigException {
@@ -208,6 +212,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call parseEmvTagsCall(Body body, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -286,6 +291,7 @@ private okhttp3.Call parseEmvTagsValidateBeforeCall(Body body, final ProgressRes
* @param body (required)
* @return TssV2PostEmvTags200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public TssV2PostEmvTags200Response parseEmvTags(Body body) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'parseEmvTags' STARTED");
@@ -300,6 +306,7 @@ public TssV2PostEmvTags200Response parseEmvTags(Body body) throws ApiException,
* @param body (required)
* @return ApiResponse<TssV2PostEmvTags200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse parseEmvTagsWithHttpInfo(Body body) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -315,6 +322,7 @@ public ApiResponse parseEmvTagsWithHttpInfo(Body bo
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call parseEmvTagsAsync(Body body, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/FlexApiApi.java b/src/main/java/Api/FlexApiApi.java
index a293c7225..9e7f382b9 100644
--- a/src/main/java/Api/FlexApiApi.java
+++ b/src/main/java/Api/FlexApiApi.java
@@ -72,6 +72,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call generateFlexAPICaptureContextCall(GenerateFlexAPICaptureContextRequest generateFlexAPICaptureContextRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -150,6 +151,7 @@ private okhttp3.Call generateFlexAPICaptureContextValidateBeforeCall(GenerateFle
* @param generateFlexAPICaptureContextRequest (required)
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public String generateFlexAPICaptureContext(GenerateFlexAPICaptureContextRequest generateFlexAPICaptureContextRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'generateFlexAPICaptureContext' STARTED");
@@ -164,6 +166,7 @@ public String generateFlexAPICaptureContext(GenerateFlexAPICaptureContextRequest
* @param generateFlexAPICaptureContextRequest (required)
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse generateFlexAPICaptureContextWithHttpInfo(GenerateFlexAPICaptureContextRequest generateFlexAPICaptureContextRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -179,6 +182,7 @@ public ApiResponse generateFlexAPICaptureContextWithHttpInfo(GenerateFle
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call generateFlexAPICaptureContextAsync(GenerateFlexAPICaptureContextRequest generateFlexAPICaptureContextRequest, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/InstrumentIdentifierApi.java b/src/main/java/Api/InstrumentIdentifierApi.java
index 8b7a33413..defb14820 100644
--- a/src/main/java/Api/InstrumentIdentifierApi.java
+++ b/src/main/java/Api/InstrumentIdentifierApi.java
@@ -82,6 +82,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteInstrumentIdentifierCall(String instrumentIdentifierId, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -166,6 +167,7 @@ private okhttp3.Call deleteInstrumentIdentifierValidateBeforeCall(String instrum
* @param instrumentIdentifierId The Id of an Instrument Identifier. (required)
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void deleteInstrumentIdentifier(String instrumentIdentifierId, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'deleteInstrumentIdentifier' STARTED");
@@ -180,6 +182,7 @@ public void deleteInstrumentIdentifier(String instrumentIdentifierId, String pro
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse deleteInstrumentIdentifierWithHttpInfo(String instrumentIdentifierId, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -195,6 +198,7 @@ public ApiResponse deleteInstrumentIdentifierWithHttpInfo(String instrumen
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call deleteInstrumentIdentifierAsync(String instrumentIdentifierId, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
@@ -231,6 +235,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInstrumentIdentifierCall(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -319,6 +324,7 @@ private okhttp3.Call getInstrumentIdentifierValidateBeforeCall(String instrument
* @param retrieveBinDetails Retrieve the Bin Details of PAN or network token (optional)
* @return PostInstrumentIdentifierRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostInstrumentIdentifierRequest getInstrumentIdentifier(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getInstrumentIdentifier' STARTED");
@@ -335,6 +341,7 @@ public PostInstrumentIdentifierRequest getInstrumentIdentifier(String instrument
* @param retrieveBinDetails Retrieve the Bin Details of PAN or network token (optional)
* @return ApiResponse<PostInstrumentIdentifierRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getInstrumentIdentifierWithHttpInfo(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -352,6 +359,7 @@ public ApiResponse getInstrumentIdentifierWithH
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInstrumentIdentifierAsync(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails, final ApiCallback callback) throws ApiException, ConfigException {
@@ -391,6 +399,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInstrumentIdentifierPaymentInstrumentsListCall(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails, Long offset, Long limit, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -485,6 +494,7 @@ private okhttp3.Call getInstrumentIdentifierPaymentInstrumentsListValidateBefore
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)
* @return PaymentInstrumentList1
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PaymentInstrumentList1 getInstrumentIdentifierPaymentInstrumentsList(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails, Long offset, Long limit) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getInstrumentIdentifierPaymentInstrumentsList' STARTED");
@@ -503,6 +513,7 @@ public PaymentInstrumentList1 getInstrumentIdentifierPaymentInstrumentsList(Stri
* @param limit The maximum number that can be returned in the array starting from the offset record in zero-based dataset. Default is 20, maximum is 100. (optional, default to 20)
* @return ApiResponse<PaymentInstrumentList1>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getInstrumentIdentifierPaymentInstrumentsListWithHttpInfo(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails, Long offset, Long limit) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -522,6 +533,7 @@ public ApiResponse getInstrumentIdentifierPaymentInstrum
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInstrumentIdentifierPaymentInstrumentsListAsync(String instrumentIdentifierId, String profileId, Boolean retrieveBinDetails, Long offset, Long limit, final ApiCallback callback) throws ApiException, ConfigException {
@@ -561,6 +573,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchInstrumentIdentifierCall(String instrumentIdentifierId, PatchInstrumentIdentifierRequest patchInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails, String ifMatch, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -656,6 +669,7 @@ private okhttp3.Call patchInstrumentIdentifierValidateBeforeCall(String instrume
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return PatchInstrumentIdentifierRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PatchInstrumentIdentifierRequest patchInstrumentIdentifier(String instrumentIdentifierId, PatchInstrumentIdentifierRequest patchInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails, String ifMatch) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'patchInstrumentIdentifier' STARTED");
@@ -674,6 +688,7 @@ public PatchInstrumentIdentifierRequest patchInstrumentIdentifier(String instrum
* @param ifMatch Contains an ETag value from a GET request to make the request conditional. (optional)
* @return ApiResponse<PatchInstrumentIdentifierRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse patchInstrumentIdentifierWithHttpInfo(String instrumentIdentifierId, PatchInstrumentIdentifierRequest patchInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails, String ifMatch) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -693,6 +708,7 @@ public ApiResponse patchInstrumentIdentifierWi
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call patchInstrumentIdentifierAsync(String instrumentIdentifierId, PatchInstrumentIdentifierRequest patchInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails, String ifMatch, final ApiCallback callback) throws ApiException, ConfigException {
@@ -730,6 +746,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postInstrumentIdentifierCall(PostInstrumentIdentifierRequest postInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -814,6 +831,7 @@ private okhttp3.Call postInstrumentIdentifierValidateBeforeCall(PostInstrumentId
* @param retrieveBinDetails Retrieve the Bin Details of PAN or network token (optional)
* @return PostInstrumentIdentifierRequest
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public PostInstrumentIdentifierRequest postInstrumentIdentifier(PostInstrumentIdentifierRequest postInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postInstrumentIdentifier' STARTED");
@@ -830,6 +848,7 @@ public PostInstrumentIdentifierRequest postInstrumentIdentifier(PostInstrumentId
* @param retrieveBinDetails Retrieve the Bin Details of PAN or network token (optional)
* @return ApiResponse<PostInstrumentIdentifierRequest>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse postInstrumentIdentifierWithHttpInfo(PostInstrumentIdentifierRequest postInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -847,6 +866,7 @@ public ApiResponse postInstrumentIdentifierWith
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postInstrumentIdentifierAsync(PostInstrumentIdentifierRequest postInstrumentIdentifierRequest, String profileId, Boolean retrieveBinDetails, final ApiCallback callback) throws ApiException, ConfigException {
@@ -884,6 +904,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postInstrumentIdentifierEnrollmentCall(String instrumentIdentifierId, PostInstrumentIdentifierEnrollmentRequest postInstrumentIdentifierEnrollmentRequest, String profileId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -972,6 +993,7 @@ private okhttp3.Call postInstrumentIdentifierEnrollmentValidateBeforeCall(String
* @param postInstrumentIdentifierEnrollmentRequest Specify Enrollable Card details (required)
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public void postInstrumentIdentifierEnrollment(String instrumentIdentifierId, PostInstrumentIdentifierEnrollmentRequest postInstrumentIdentifierEnrollmentRequest, String profileId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'postInstrumentIdentifierEnrollment' STARTED");
@@ -987,6 +1009,7 @@ public void postInstrumentIdentifierEnrollment(String instrumentIdentifierId, Po
* @param profileId The Id of a profile containing user specific TMS configuration. (optional)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse postInstrumentIdentifierEnrollmentWithHttpInfo(String instrumentIdentifierId, PostInstrumentIdentifierEnrollmentRequest postInstrumentIdentifierEnrollmentRequest, String profileId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -1003,6 +1026,7 @@ public ApiResponse postInstrumentIdentifierEnrollmentWithHttpInfo(String i
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call postInstrumentIdentifierEnrollmentAsync(String instrumentIdentifierId, PostInstrumentIdentifierEnrollmentRequest postInstrumentIdentifierEnrollmentRequest, String profileId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/InterchangeClearingLevelDetailsApi.java b/src/main/java/Api/InterchangeClearingLevelDetailsApi.java
index 93120d03b..f9c475219 100644
--- a/src/main/java/Api/InterchangeClearingLevelDetailsApi.java
+++ b/src/main/java/Api/InterchangeClearingLevelDetailsApi.java
@@ -74,6 +74,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInterchangeClearingLevelDetailsCall(DateTime startTime, DateTime endTime, String organizationId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -169,6 +170,7 @@ private okhttp3.Call getInterchangeClearingLevelDetailsValidateBeforeCall(DateTi
* @param organizationId Valid Organization Id (optional)
* @return ReportingV3InterchangeClearingLevelDetailsGet200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ReportingV3InterchangeClearingLevelDetailsGet200Response getInterchangeClearingLevelDetails(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getInterchangeClearingLevelDetails' STARTED");
@@ -185,6 +187,7 @@ public ReportingV3InterchangeClearingLevelDetailsGet200Response getInterchangeCl
* @param organizationId Valid Organization Id (optional)
* @return ApiResponse<ReportingV3InterchangeClearingLevelDetailsGet200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getInterchangeClearingLevelDetailsWithHttpInfo(DateTime startTime, DateTime endTime, String organizationId) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -202,6 +205,7 @@ public ApiResponse get
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInterchangeClearingLevelDetailsAsync(DateTime startTime, DateTime endTime, String organizationId, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/InvoiceSettingsApi.java b/src/main/java/Api/InvoiceSettingsApi.java
index 7873ad795..7f7abf350 100644
--- a/src/main/java/Api/InvoiceSettingsApi.java
+++ b/src/main/java/Api/InvoiceSettingsApi.java
@@ -73,6 +73,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInvoiceSettingsCall(final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -147,6 +148,7 @@ private okhttp3.Call getInvoiceSettingsValidateBeforeCall(final ProgressResponse
* Allows you to retrieve the invoice settings for the payment page.
* @return InvoicingV2InvoiceSettingsGet200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InvoicingV2InvoiceSettingsGet200Response getInvoiceSettings() throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'getInvoiceSettings' STARTED");
@@ -160,6 +162,7 @@ public InvoicingV2InvoiceSettingsGet200Response getInvoiceSettings() throws ApiE
* Allows you to retrieve the invoice settings for the payment page.
* @return ApiResponse<InvoicingV2InvoiceSettingsGet200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse getInvoiceSettingsWithHttpInfo() throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -174,6 +177,7 @@ public ApiResponse getInvoiceSettingsW
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call getInvoiceSettingsAsync(final ApiCallback callback) throws ApiException, ConfigException {
@@ -209,6 +213,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call updateInvoiceSettingsCall(InvoiceSettingsRequest invoiceSettingsRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -287,6 +292,7 @@ private okhttp3.Call updateInvoiceSettingsValidateBeforeCall(InvoiceSettingsRequ
* @param invoiceSettingsRequest (required)
* @return InvoicingV2InvoiceSettingsGet200Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InvoicingV2InvoiceSettingsGet200Response updateInvoiceSettings(InvoiceSettingsRequest invoiceSettingsRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'updateInvoiceSettings' STARTED");
@@ -301,6 +307,7 @@ public InvoicingV2InvoiceSettingsGet200Response updateInvoiceSettings(InvoiceSet
* @param invoiceSettingsRequest (required)
* @return ApiResponse<InvoicingV2InvoiceSettingsGet200Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse updateInvoiceSettingsWithHttpInfo(InvoiceSettingsRequest invoiceSettingsRequest) throws ApiException, ConfigException {
this.apiClient.setComputationStartTime(System.nanoTime());
@@ -316,6 +323,7 @@ public ApiResponse updateInvoiceSettin
* @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
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call updateInvoiceSettingsAsync(InvoiceSettingsRequest invoiceSettingsRequest, final ApiCallback callback) throws ApiException, ConfigException {
diff --git a/src/main/java/Api/InvoicesApi.java b/src/main/java/Api/InvoicesApi.java
index 0c7181489..3dbe89015 100644
--- a/src/main/java/Api/InvoicesApi.java
+++ b/src/main/java/Api/InvoicesApi.java
@@ -83,6 +83,7 @@ public void setApiClient(ApiClient apiClient) {
* @param progressRequestListener Progress request listener
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public okhttp3.Call createInvoiceCall(CreateInvoiceRequest createInvoiceRequest, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException, ConfigException {
SdkTracker sdkTracker = new SdkTracker();
@@ -161,6 +162,7 @@ private okhttp3.Call createInvoiceValidateBeforeCall(CreateInvoiceRequest create
* @param createInvoiceRequest (required)
* @return InvoicingV2InvoicesPost201Response
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public InvoicingV2InvoicesPost201Response createInvoice(CreateInvoiceRequest createInvoiceRequest) throws ApiException, ConfigException {
logger.info("CALL TO METHOD 'createInvoice' STARTED");
@@ -175,6 +177,7 @@ public InvoicingV2InvoicesPost201Response createInvoice(CreateInvoiceRequest cre
* @param createInvoiceRequest (required)
* @return ApiResponse<InvoicingV2InvoicesPost201Response>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
+ * @throws ConfigException If creation of merchant configuration fails in ApiClient
*/
public ApiResponse