@@ -326,7 +326,6 @@ public okhttp3.Call apiV2TransactionTransactionIdGetAsync(
326
326
* Build call for apiV2TransactionTransactionIdProcessPost
327
327
*
328
328
* @param transactionId Transaction id (required)
329
- * @param X_CLIENT_KEY (required)
330
329
* @param transactionProcessRequest (required)
331
330
* @param _callback Callback for upload/download progress
332
331
* @return Call to execute
@@ -341,7 +340,6 @@ public okhttp3.Call apiV2TransactionTransactionIdGetAsync(
341
340
*/
342
341
public okhttp3 .Call apiV2TransactionTransactionIdProcessPostCall (
343
342
Integer transactionId ,
344
- String X_CLIENT_KEY ,
345
343
TransactionProcessRequest transactionProcessRequest ,
346
344
final ApiCallback _callback )
347
345
throws ApiException {
@@ -357,10 +355,6 @@ public okhttp3.Call apiV2TransactionTransactionIdProcessPostCall(
357
355
List <Pair > localVarQueryParams = new ArrayList <Pair >();
358
356
List <Pair > localVarCollectionQueryParams = new ArrayList <Pair >();
359
357
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
-
364
358
Map <String , String > localVarCookieParams = new HashMap <String , String >();
365
359
Map <String , Object > localVarFormParams = new HashMap <String , Object >();
366
360
final String [] localVarAccepts = {"application/json" };
@@ -391,7 +385,6 @@ public okhttp3.Call apiV2TransactionTransactionIdProcessPostCall(
391
385
@ SuppressWarnings ("rawtypes" )
392
386
private okhttp3 .Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall (
393
387
Integer transactionId ,
394
- String X_CLIENT_KEY ,
395
388
TransactionProcessRequest transactionProcessRequest ,
396
389
final ApiCallback _callback )
397
390
throws ApiException {
@@ -402,12 +395,6 @@ private okhttp3.Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall(
402
395
"Missing the required parameter 'transactionId' when calling apiV2TransactionTransactionIdProcessPost(Async)" );
403
396
}
404
397
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
-
411
398
// verify the required parameter 'transactionProcessRequest' is set
412
399
if (transactionProcessRequest == null ) {
413
400
throw new ApiException (
@@ -416,15 +403,14 @@ private okhttp3.Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall(
416
403
417
404
okhttp3 .Call localVarCall =
418
405
apiV2TransactionTransactionIdProcessPostCall (
419
- transactionId , X_CLIENT_KEY , transactionProcessRequest , _callback );
406
+ transactionId , transactionProcessRequest , _callback );
420
407
return localVarCall ;
421
408
}
422
409
423
410
/**
424
411
* Preprocess
425
412
*
426
413
* @param transactionId Transaction id (required)
427
- * @param X_CLIENT_KEY (required)
428
414
* @param transactionProcessRequest (required)
429
415
* @return InlineResponse200
430
416
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
@@ -438,21 +424,18 @@ private okhttp3.Call apiV2TransactionTransactionIdProcessPostValidateBeforeCall(
438
424
* </table>
439
425
*/
440
426
public InlineResponse200 apiV2TransactionTransactionIdProcessPost (
441
- Integer transactionId ,
442
- String X_CLIENT_KEY ,
443
- TransactionProcessRequest transactionProcessRequest )
427
+ Integer transactionId , TransactionProcessRequest transactionProcessRequest )
444
428
throws ApiException {
445
429
ApiResponse <InlineResponse200 > localVarResp =
446
430
apiV2TransactionTransactionIdProcessPostWithHttpInfo (
447
- transactionId , X_CLIENT_KEY , transactionProcessRequest );
431
+ transactionId , transactionProcessRequest );
448
432
return localVarResp .getData ();
449
433
}
450
434
451
435
/**
452
436
* Preprocess
453
437
*
454
438
* @param transactionId Transaction id (required)
455
- * @param X_CLIENT_KEY (required)
456
439
* @param transactionProcessRequest (required)
457
440
* @return ApiResponse<InlineResponse200>
458
441
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
@@ -466,13 +449,11 @@ public InlineResponse200 apiV2TransactionTransactionIdProcessPost(
466
449
* </table>
467
450
*/
468
451
public ApiResponse <InlineResponse200 > apiV2TransactionTransactionIdProcessPostWithHttpInfo (
469
- Integer transactionId ,
470
- String X_CLIENT_KEY ,
471
- TransactionProcessRequest transactionProcessRequest )
452
+ Integer transactionId , TransactionProcessRequest transactionProcessRequest )
472
453
throws ApiException {
473
454
okhttp3 .Call localVarCall =
474
455
apiV2TransactionTransactionIdProcessPostValidateBeforeCall (
475
- transactionId , X_CLIENT_KEY , transactionProcessRequest , null );
456
+ transactionId , transactionProcessRequest , null );
476
457
Type localVarReturnType = new TypeToken <InlineResponse200 >() {}.getType ();
477
458
return localVarApiClient .execute (localVarCall , localVarReturnType );
478
459
}
@@ -481,7 +462,6 @@ public ApiResponse<InlineResponse200> apiV2TransactionTransactionIdProcessPostWi
481
462
* Preprocess (asynchronously)
482
463
*
483
464
* @param transactionId Transaction id (required)
484
- * @param X_CLIENT_KEY (required)
485
465
* @param transactionProcessRequest (required)
486
466
* @param _callback The callback to be executed when the API call finishes
487
467
* @return The request call
@@ -496,14 +476,13 @@ public ApiResponse<InlineResponse200> apiV2TransactionTransactionIdProcessPostWi
496
476
*/
497
477
public okhttp3 .Call apiV2TransactionTransactionIdProcessPostAsync (
498
478
Integer transactionId ,
499
- String X_CLIENT_KEY ,
500
479
TransactionProcessRequest transactionProcessRequest ,
501
480
final ApiCallback <InlineResponse200 > _callback )
502
481
throws ApiException {
503
482
504
483
okhttp3 .Call localVarCall =
505
484
apiV2TransactionTransactionIdProcessPostValidateBeforeCall (
506
- transactionId , X_CLIENT_KEY , transactionProcessRequest , _callback );
485
+ transactionId , transactionProcessRequest , _callback );
507
486
Type localVarReturnType = new TypeToken <InlineResponse200 >() {}.getType ();
508
487
localVarApiClient .executeAsync (localVarCall , localVarReturnType , _callback );
509
488
return localVarCall ;
0 commit comments