3737import ai .reveng .model .BaseResponseFunctionCapabilityResponse ;
3838import ai .reveng .model .BaseResponseFunctionStringsResponse ;
3939import ai .reveng .model .BaseResponseFunctionsDetailResponse ;
40- import ai .reveng .model .FunctionMatchingBatchResponse ;
4140import ai .reveng .model .FunctionMatchingRequest ;
41+ import ai .reveng .model .FunctionMatchingResponse ;
4242
4343import java .lang .reflect .Type ;
4444import java .util .ArrayList ;
@@ -306,7 +306,7 @@ private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotatio
306306 * Takes in an analysis id and settings and matches the nearest functions to the ones associated with it. Results can optionally be filtered by collection, binary, debug type or (other) function ids
307307 * @param analysisId (required)
308308 * @param analysisFunctionMatchingRequest (required)
309- * @return FunctionMatchingBatchResponse
309+ * @return FunctionMatchingResponse
310310 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
311311 * @http.response.details
312312 <table border="1">
@@ -316,8 +316,8 @@ private okhttp3.Call analysisFunctionMatchingValidateBeforeCall(@javax.annotatio
316316 <tr><td> 422 </td><td> Invalid request parameters </td><td> - </td></tr>
317317 </table>
318318 */
319- public FunctionMatchingBatchResponse analysisFunctionMatching (@ javax .annotation .Nonnull Integer analysisId , @ javax .annotation .Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest ) throws ApiException {
320- ApiResponse <FunctionMatchingBatchResponse > localVarResp = analysisFunctionMatchingWithHttpInfo (analysisId , analysisFunctionMatchingRequest );
319+ public FunctionMatchingResponse analysisFunctionMatching (@ javax .annotation .Nonnull Integer analysisId , @ javax .annotation .Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest ) throws ApiException {
320+ ApiResponse <FunctionMatchingResponse > localVarResp = analysisFunctionMatchingWithHttpInfo (analysisId , analysisFunctionMatchingRequest );
321321 return localVarResp .getData ();
322322 }
323323
@@ -326,7 +326,7 @@ public FunctionMatchingBatchResponse analysisFunctionMatching(@javax.annotation.
326326 * Takes in an analysis id and settings and matches the nearest functions to the ones associated with it. Results can optionally be filtered by collection, binary, debug type or (other) function ids
327327 * @param analysisId (required)
328328 * @param analysisFunctionMatchingRequest (required)
329- * @return ApiResponse<FunctionMatchingBatchResponse >
329+ * @return ApiResponse<FunctionMatchingResponse >
330330 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
331331 * @http.response.details
332332 <table border="1">
@@ -336,9 +336,9 @@ public FunctionMatchingBatchResponse analysisFunctionMatching(@javax.annotation.
336336 <tr><td> 422 </td><td> Invalid request parameters </td><td> - </td></tr>
337337 </table>
338338 */
339- public ApiResponse <FunctionMatchingBatchResponse > analysisFunctionMatchingWithHttpInfo (@ javax .annotation .Nonnull Integer analysisId , @ javax .annotation .Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest ) throws ApiException {
339+ public ApiResponse <FunctionMatchingResponse > analysisFunctionMatchingWithHttpInfo (@ javax .annotation .Nonnull Integer analysisId , @ javax .annotation .Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest ) throws ApiException {
340340 okhttp3 .Call localVarCall = analysisFunctionMatchingValidateBeforeCall (analysisId , analysisFunctionMatchingRequest , null );
341- Type localVarReturnType = new TypeToken <FunctionMatchingBatchResponse >(){}.getType ();
341+ Type localVarReturnType = new TypeToken <FunctionMatchingResponse >(){}.getType ();
342342 return localVarApiClient .execute (localVarCall , localVarReturnType );
343343 }
344344
@@ -358,10 +358,10 @@ public ApiResponse<FunctionMatchingBatchResponse> analysisFunctionMatchingWithHt
358358 <tr><td> 422 </td><td> Invalid request parameters </td><td> - </td></tr>
359359 </table>
360360 */
361- public okhttp3 .Call analysisFunctionMatchingAsync (@ javax .annotation .Nonnull Integer analysisId , @ javax .annotation .Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest , final ApiCallback <FunctionMatchingBatchResponse > _callback ) throws ApiException {
361+ public okhttp3 .Call analysisFunctionMatchingAsync (@ javax .annotation .Nonnull Integer analysisId , @ javax .annotation .Nonnull AnalysisFunctionMatchingRequest analysisFunctionMatchingRequest , final ApiCallback <FunctionMatchingResponse > _callback ) throws ApiException {
362362
363363 okhttp3 .Call localVarCall = analysisFunctionMatchingValidateBeforeCall (analysisId , analysisFunctionMatchingRequest , _callback );
364- Type localVarReturnType = new TypeToken <FunctionMatchingBatchResponse >(){}.getType ();
364+ Type localVarReturnType = new TypeToken <FunctionMatchingResponse >(){}.getType ();
365365 localVarApiClient .executeAsync (localVarCall , localVarReturnType , _callback );
366366 return localVarCall ;
367367 }
@@ -580,7 +580,7 @@ private okhttp3.Call batchFunctionMatchingValidateBeforeCall(@javax.annotation.N
580580 * Perform function matching for an arbitrary batch of functions, binaries or collections
581581 * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system
582582 * @param functionMatchingRequest (required)
583- * @return FunctionMatchingBatchResponse
583+ * @return FunctionMatchingResponse
584584 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
585585 * @http.response.details
586586 <table border="1">
@@ -590,16 +590,16 @@ private okhttp3.Call batchFunctionMatchingValidateBeforeCall(@javax.annotation.N
590590 <tr><td> 422 </td><td> Invalid request parameters </td><td> - </td></tr>
591591 </table>
592592 */
593- public FunctionMatchingBatchResponse batchFunctionMatching (@ javax .annotation .Nonnull FunctionMatchingRequest functionMatchingRequest ) throws ApiException {
594- ApiResponse <FunctionMatchingBatchResponse > localVarResp = batchFunctionMatchingWithHttpInfo (functionMatchingRequest );
593+ public FunctionMatchingResponse batchFunctionMatching (@ javax .annotation .Nonnull FunctionMatchingRequest functionMatchingRequest ) throws ApiException {
594+ ApiResponse <FunctionMatchingResponse > localVarResp = batchFunctionMatchingWithHttpInfo (functionMatchingRequest );
595595 return localVarResp .getData ();
596596 }
597597
598598 /**
599599 * Perform function matching for an arbitrary batch of functions, binaries or collections
600600 * Takes in an input of functions ID's and settings and finds the nearest functions for each function that's within the system
601601 * @param functionMatchingRequest (required)
602- * @return ApiResponse<FunctionMatchingBatchResponse >
602+ * @return ApiResponse<FunctionMatchingResponse >
603603 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
604604 * @http.response.details
605605 <table border="1">
@@ -609,9 +609,9 @@ public FunctionMatchingBatchResponse batchFunctionMatching(@javax.annotation.Non
609609 <tr><td> 422 </td><td> Invalid request parameters </td><td> - </td></tr>
610610 </table>
611611 */
612- public ApiResponse <FunctionMatchingBatchResponse > batchFunctionMatchingWithHttpInfo (@ javax .annotation .Nonnull FunctionMatchingRequest functionMatchingRequest ) throws ApiException {
612+ public ApiResponse <FunctionMatchingResponse > batchFunctionMatchingWithHttpInfo (@ javax .annotation .Nonnull FunctionMatchingRequest functionMatchingRequest ) throws ApiException {
613613 okhttp3 .Call localVarCall = batchFunctionMatchingValidateBeforeCall (functionMatchingRequest , null );
614- Type localVarReturnType = new TypeToken <FunctionMatchingBatchResponse >(){}.getType ();
614+ Type localVarReturnType = new TypeToken <FunctionMatchingResponse >(){}.getType ();
615615 return localVarApiClient .execute (localVarCall , localVarReturnType );
616616 }
617617
@@ -630,10 +630,10 @@ public ApiResponse<FunctionMatchingBatchResponse> batchFunctionMatchingWithHttpI
630630 <tr><td> 422 </td><td> Invalid request parameters </td><td> - </td></tr>
631631 </table>
632632 */
633- public okhttp3 .Call batchFunctionMatchingAsync (@ javax .annotation .Nonnull FunctionMatchingRequest functionMatchingRequest , final ApiCallback <FunctionMatchingBatchResponse > _callback ) throws ApiException {
633+ public okhttp3 .Call batchFunctionMatchingAsync (@ javax .annotation .Nonnull FunctionMatchingRequest functionMatchingRequest , final ApiCallback <FunctionMatchingResponse > _callback ) throws ApiException {
634634
635635 okhttp3 .Call localVarCall = batchFunctionMatchingValidateBeforeCall (functionMatchingRequest , _callback );
636- Type localVarReturnType = new TypeToken <FunctionMatchingBatchResponse >(){}.getType ();
636+ Type localVarReturnType = new TypeToken <FunctionMatchingResponse >(){}.getType ();
637637 localVarApiClient .executeAsync (localVarCall , localVarReturnType , _callback );
638638 return localVarCall ;
639639 }
0 commit comments