@@ -53,8 +53,8 @@ public interface ISearchTransactionsApi : IApiAccessor
5353 /// </remarks>
5454 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
5555 /// <param name="searchId">Search ID.</param>
56- /// <returns>TssV2TransactionsPost201Response1 </returns>
57- TssV2TransactionsPost201Response1 GetSearch ( string searchId ) ;
56+ /// <returns>TssV2TransactionsPost201Response </returns>
57+ TssV2TransactionsPost201Response GetSearch ( string searchId ) ;
5858
5959 /// <summary>
6060 /// Get Search results
@@ -64,8 +64,8 @@ public interface ISearchTransactionsApi : IApiAccessor
6464 /// </remarks>
6565 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
6666 /// <param name="searchId">Search ID.</param>
67- /// <returns>ApiResponse of TssV2TransactionsPost201Response1 </returns>
68- ApiResponse < TssV2TransactionsPost201Response1 > GetSearchWithHttpInfo ( string searchId ) ;
67+ /// <returns>ApiResponse of TssV2TransactionsPost201Response </returns>
68+ ApiResponse < TssV2TransactionsPost201Response > GetSearchWithHttpInfo ( string searchId ) ;
6969 #endregion Synchronous Operations
7070 #region Asynchronous Operations
7171 /// <summary>
@@ -97,8 +97,8 @@ public interface ISearchTransactionsApi : IApiAccessor
9797 /// </remarks>
9898 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
9999 /// <param name="searchId">Search ID.</param>
100- /// <returns>Task of TssV2TransactionsPost201Response1 </returns>
101- System . Threading . Tasks . Task < TssV2TransactionsPost201Response1 > GetSearchAsync ( string searchId ) ;
100+ /// <returns>Task of TssV2TransactionsPost201Response </returns>
101+ System . Threading . Tasks . Task < TssV2TransactionsPost201Response > GetSearchAsync ( string searchId ) ;
102102
103103 /// <summary>
104104 /// Get Search results
@@ -108,8 +108,8 @@ public interface ISearchTransactionsApi : IApiAccessor
108108 /// </remarks>
109109 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
110110 /// <param name="searchId">Search ID.</param>
111- /// <returns>Task of ApiResponse (TssV2TransactionsPost201Response1 )</returns>
112- System . Threading . Tasks . Task < ApiResponse < TssV2TransactionsPost201Response1 > > GetSearchAsyncWithHttpInfo ( string searchId ) ;
111+ /// <returns>Task of ApiResponse (TssV2TransactionsPost201Response )</returns>
112+ System . Threading . Tasks . Task < ApiResponse < TssV2TransactionsPost201Response > > GetSearchAsyncWithHttpInfo ( string searchId ) ;
113113 #endregion Asynchronous Operations
114114 }
115115
@@ -372,10 +372,10 @@ public async System.Threading.Tasks.Task<ApiResponse<TssV2TransactionsPost201Res
372372 /// </summary>
373373 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
374374 /// <param name="searchId">Search ID.</param>
375- /// <returns>TssV2TransactionsPost201Response1 </returns>
376- public TssV2TransactionsPost201Response1 GetSearch ( string searchId )
375+ /// <returns>TssV2TransactionsPost201Response </returns>
376+ public TssV2TransactionsPost201Response GetSearch ( string searchId )
377377 {
378- ApiResponse < TssV2TransactionsPost201Response1 > localVarResponse = GetSearchWithHttpInfo ( searchId ) ;
378+ ApiResponse < TssV2TransactionsPost201Response > localVarResponse = GetSearchWithHttpInfo ( searchId ) ;
379379 return localVarResponse . Data ;
380380 }
381381
@@ -384,8 +384,8 @@ public TssV2TransactionsPost201Response1 GetSearch (string searchId)
384384 /// </summary>
385385 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
386386 /// <param name="searchId">Search ID.</param>
387- /// <returns>ApiResponse of TssV2TransactionsPost201Response1 </returns>
388- public ApiResponse < TssV2TransactionsPost201Response1 > GetSearchWithHttpInfo ( string searchId )
387+ /// <returns>ApiResponse of TssV2TransactionsPost201Response </returns>
388+ public ApiResponse < TssV2TransactionsPost201Response > GetSearchWithHttpInfo ( string searchId )
389389 {
390390 // verify the required parameter 'searchId' is set
391391 if ( searchId == null )
@@ -429,20 +429,20 @@ public ApiResponse< TssV2TransactionsPost201Response1 > GetSearchWithHttpInfo (s
429429 if ( exception != null ) throw exception ;
430430 }
431431
432- return new ApiResponse < TssV2TransactionsPost201Response1 > ( localVarStatusCode ,
432+ return new ApiResponse < TssV2TransactionsPost201Response > ( localVarStatusCode ,
433433 localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
434- ( TssV2TransactionsPost201Response1 ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( TssV2TransactionsPost201Response1 ) ) ) ;
434+ ( TssV2TransactionsPost201Response ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( TssV2TransactionsPost201Response ) ) ) ;
435435 }
436436
437437 /// <summary>
438438 /// Get Search results Include the Search ID in the GET request to retrieve the search results.
439439 /// </summary>
440440 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
441441 /// <param name="searchId">Search ID.</param>
442- /// <returns>Task of TssV2TransactionsPost201Response1 </returns>
443- public async System . Threading . Tasks . Task < TssV2TransactionsPost201Response1 > GetSearchAsync ( string searchId )
442+ /// <returns>Task of TssV2TransactionsPost201Response </returns>
443+ public async System . Threading . Tasks . Task < TssV2TransactionsPost201Response > GetSearchAsync ( string searchId )
444444 {
445- ApiResponse < TssV2TransactionsPost201Response1 > localVarResponse = await GetSearchAsyncWithHttpInfo ( searchId ) ;
445+ ApiResponse < TssV2TransactionsPost201Response > localVarResponse = await GetSearchAsyncWithHttpInfo ( searchId ) ;
446446 return localVarResponse . Data ;
447447
448448 }
@@ -452,8 +452,8 @@ public async System.Threading.Tasks.Task<TssV2TransactionsPost201Response1> GetS
452452 /// </summary>
453453 /// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
454454 /// <param name="searchId">Search ID.</param>
455- /// <returns>Task of ApiResponse (TssV2TransactionsPost201Response1 )</returns>
456- public async System . Threading . Tasks . Task < ApiResponse < TssV2TransactionsPost201Response1 > > GetSearchAsyncWithHttpInfo ( string searchId )
455+ /// <returns>Task of ApiResponse (TssV2TransactionsPost201Response )</returns>
456+ public async System . Threading . Tasks . Task < ApiResponse < TssV2TransactionsPost201Response > > GetSearchAsyncWithHttpInfo ( string searchId )
457457 {
458458 // verify the required parameter 'searchId' is set
459459 if ( searchId == null )
@@ -497,9 +497,9 @@ public async System.Threading.Tasks.Task<ApiResponse<TssV2TransactionsPost201Res
497497 if ( exception != null ) throw exception ;
498498 }
499499
500- return new ApiResponse < TssV2TransactionsPost201Response1 > ( localVarStatusCode ,
500+ return new ApiResponse < TssV2TransactionsPost201Response > ( localVarStatusCode ,
501501 localVarResponse . Headers . ToDictionary ( x => x . Name , x => x . Value . ToString ( ) ) ,
502- ( TssV2TransactionsPost201Response1 ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( TssV2TransactionsPost201Response1 ) ) ) ;
502+ ( TssV2TransactionsPost201Response ) Configuration . ApiClient . Deserialize ( localVarResponse , typeof ( TssV2TransactionsPost201Response ) ) ) ;
503503 }
504504
505505 }
0 commit comments