@@ -326,7 +326,6 @@ public okhttp3.Call apiV2TransactionTransactionIdGetAsync(
326326 * Build call for apiV2TransactionTransactionIdProcessPost
327327 *
328328 * @param transactionId Transaction id (required)
329- * @param X_CLIENT_KEY (required)
330329 * @param transactionProcessRequest (required)
331330 * @param _callback Callback for upload/download progress
332331 * @return Call to execute
@@ -341,7 +340,6 @@ public okhttp3.Call apiV2TransactionTransactionIdGetAsync(
341340 */
342341 public okhttp3 .Call apiV2TransactionTransactionIdProcessPostCall (
343342 Integer transactionId ,
344- String X_CLIENT_KEY ,
345343 TransactionProcessRequest transactionProcessRequest ,
346344 final ApiCallback _callback )
347345 throws ApiException {
@@ -357,10 +355,6 @@ public okhttp3.Call apiV2TransactionTransactionIdProcessPostCall(
357355 List <Pair > localVarQueryParams = new ArrayList <Pair >();
358356 List <Pair > localVarCollectionQueryParams = new ArrayList <Pair >();
359357 Map <String , String > localVarHeaderParams = new HashMap <String , String >();
360- if (X_CLIENT_KEY != null ) {
361- localVarHeaderParams .put ("X-CLIENT-KEY" , localVarApiClient .parameterToString (X_CLIENT_KEY ));
362- }
363-
364358 Map <String , String > localVarCookieParams = new HashMap <String , String >();
365359 Map <String , Object > localVarFormParams = new HashMap <String , Object >();
366360 final String [] localVarAccepts = {"application/json" };
@@ -391,7 +385,6 @@ public okhttp3.Call apiV2TransactionTransactionIdProcessPostCall(
391385 @ SuppressWarnings ("rawtypes" )
392386 private okhttp3 .Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall (
393387 Integer transactionId ,
394- String X_CLIENT_KEY ,
395388 TransactionProcessRequest transactionProcessRequest ,
396389 final ApiCallback _callback )
397390 throws ApiException {
@@ -402,12 +395,6 @@ private okhttp3.Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall(
402395 "Missing the required parameter 'transactionId' when calling apiV2TransactionTransactionIdProcessPost(Async)" );
403396 }
404397
405- // verify the required parameter 'X_CLIENT_KEY' is set
406- if (X_CLIENT_KEY == null ) {
407- throw new ApiException (
408- "Missing the required parameter 'X_CLIENT_KEY' when calling apiV2TransactionTransactionIdProcessPost(Async)" );
409- }
410-
411398 // verify the required parameter 'transactionProcessRequest' is set
412399 if (transactionProcessRequest == null ) {
413400 throw new ApiException (
@@ -416,15 +403,14 @@ private okhttp3.Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall(
416403
417404 okhttp3 .Call localVarCall =
418405 apiV2TransactionTransactionIdProcessPostCall (
419- transactionId , X_CLIENT_KEY , transactionProcessRequest , _callback );
406+ transactionId , transactionProcessRequest , _callback );
420407 return localVarCall ;
421408 }
422409
423410 /**
424411 * Preprocess
425412 *
426413 * @param transactionId Transaction id (required)
427- * @param X_CLIENT_KEY (required)
428414 * @param transactionProcessRequest (required)
429415 * @return InlineResponse200
430416 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
@@ -438,21 +424,18 @@ private okhttp3.Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall(
438424 * </table>
439425 */
440426 public InlineResponse200 apiV2TransactionTransactionIdProcessPost (
441- Integer transactionId ,
442- String X_CLIENT_KEY ,
443- TransactionProcessRequest transactionProcessRequest )
427+ Integer transactionId , TransactionProcessRequest transactionProcessRequest )
444428 throws ApiException {
445429 ApiResponse <InlineResponse200 > localVarResp =
446430 apiV2TransactionTransactionIdProcessPostWithHttpInfo (
447- transactionId , X_CLIENT_KEY , transactionProcessRequest );
431+ transactionId , transactionProcessRequest );
448432 return localVarResp .getData ();
449433 }
450434
451435 /**
452436 * Preprocess
453437 *
454438 * @param transactionId Transaction id (required)
455- * @param X_CLIENT_KEY (required)
456439 * @param transactionProcessRequest (required)
457440 * @return ApiResponse<InlineResponse200>
458441 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
@@ -466,13 +449,11 @@ public InlineResponse200 apiV2TransactionTransactionIdProcessPost(
466449 * </table>
467450 */
468451 public ApiResponse <InlineResponse200 > apiV2TransactionTransactionIdProcessPostWithHttpInfo (
469- Integer transactionId ,
470- String X_CLIENT_KEY ,
471- TransactionProcessRequest transactionProcessRequest )
452+ Integer transactionId , TransactionProcessRequest transactionProcessRequest )
472453 throws ApiException {
473454 okhttp3 .Call localVarCall =
474455 apiV2TransactionTransactionIdProcessPostValidateBeforeCall (
475- transactionId , X_CLIENT_KEY , transactionProcessRequest , null );
456+ transactionId , transactionProcessRequest , null );
476457 Type localVarReturnType = new TypeToken <InlineResponse200 >() {}.getType ();
477458 return localVarApiClient .execute (localVarCall , localVarReturnType );
478459 }
@@ -481,7 +462,6 @@ public ApiResponse<InlineResponse200> apiV2TransactionTransactionIdProcessPostWi
481462 * Preprocess (asynchronously)
482463 *
483464 * @param transactionId Transaction id (required)
484- * @param X_CLIENT_KEY (required)
485465 * @param transactionProcessRequest (required)
486466 * @param _callback The callback to be executed when the API call finishes
487467 * @return The request call
@@ -496,14 +476,13 @@ public ApiResponse<InlineResponse200> apiV2TransactionTransactionIdProcessPostWi
496476 */
497477 public okhttp3 .Call apiV2TransactionTransactionIdProcessPostAsync (
498478 Integer transactionId ,
499- String X_CLIENT_KEY ,
500479 TransactionProcessRequest transactionProcessRequest ,
501480 final ApiCallback <InlineResponse200 > _callback )
502481 throws ApiException {
503482
504483 okhttp3 .Call localVarCall =
505484 apiV2TransactionTransactionIdProcessPostValidateBeforeCall (
506- transactionId , X_CLIENT_KEY , transactionProcessRequest , _callback );
485+ transactionId , transactionProcessRequest , _callback );
507486 Type localVarReturnType = new TypeToken <InlineResponse200 >() {}.getType ();
508487 localVarApiClient .executeAsync (localVarCall , localVarReturnType , _callback );
509488 return localVarCall ;
0 commit comments