@@ -118,7 +118,7 @@ public class Example {
118118 // APIKey.setApiKeyPrefix("Token");
119119
120120 FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi (defaultClient);
121- Integer functionId = 56 ; // Integer |
121+ Long functionId = 56L ; // Long | The ID of the function for which we are creating the decompilation task
122122 try {
123123 BaseResponse result = apiInstance. createAiDecompilationTask(functionId);
124124 System . out. println(result);
@@ -137,7 +137,7 @@ public class Example {
137137
138138| Name | Type | Description | Notes |
139139| ------------- | ------------- | ------------- | -------------|
140- | ** functionId** | ** Integer ** | | |
140+ | ** functionId** | ** Long ** | The ID of the function for which we are creating the decompilation task | |
141141
142142### Return type
143143
@@ -334,7 +334,7 @@ public class Example {
334334 // APIKey.setApiKeyPrefix("Token");
335335
336336 FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi (defaultClient);
337- Integer functionId = 56 ; // Integer |
337+ Long functionId = 56L ; // Long | The ID of the function for which to get the rating
338338 try {
339339 BaseResponseGetAiDecompilationRatingResponse result = apiInstance. getAiDecompilationRating(functionId);
340340 System . out. println(result);
@@ -353,7 +353,7 @@ public class Example {
353353
354354| Name | Type | Description | Notes |
355355| ------------- | ------------- | ------------- | -------------|
356- | ** functionId** | ** Integer ** | | |
356+ | ** functionId** | ** Long ** | The ID of the function for which to get the rating | |
357357
358358### Return type
359359
@@ -404,7 +404,7 @@ public class Example {
404404 // APIKey.setApiKeyPrefix("Token");
405405
406406 FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi (defaultClient);
407- Integer functionId = 56 ; // Integer |
407+ Long functionId = 56L ; // Long | The ID of the function being decompiled
408408 Boolean summarise = true ; // Boolean | Generate a summary for the decompilation
409409 Boolean generateInlineComments = true ; // Boolean | Generate inline comments for the decompilation (only works if summarise is enabled)
410410 try {
@@ -425,7 +425,7 @@ public class Example {
425425
426426| Name | Type | Description | Notes |
427427| ------------- | ------------- | ------------- | -------------|
428- | ** functionId** | ** Integer ** | | |
428+ | ** functionId** | ** Long ** | The ID of the function being decompiled | |
429429| ** summarise** | ** Boolean** | Generate a summary for the decompilation | [ optional] [ default to true] |
430430| ** generateInlineComments** | ** Boolean** | Generate inline comments for the decompilation (only works if summarise is enabled) | [ optional] [ default to true] |
431431
@@ -477,7 +477,7 @@ public class Example {
477477 // APIKey.setApiKeyPrefix("Token");
478478
479479 FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi (defaultClient);
480- Integer functionId = 56 ; // Integer |
480+ Long functionId = 56L ; // Long | The ID of the function being checked
481481 try {
482482 BaseResponseFunctionTaskResponse result = apiInstance. getAiDecompilationTaskStatus(functionId);
483483 System . out. println(result);
@@ -496,7 +496,7 @@ public class Example {
496496
497497| Name | Type | Description | Notes |
498498| ------------- | ------------- | ------------- | -------------|
499- | ** functionId** | ** Integer ** | | |
499+ | ** functionId** | ** Long ** | The ID of the function being checked | |
500500
501501### Return type
502502
@@ -621,7 +621,7 @@ public class Example {
621621 // APIKey.setApiKeyPrefix("Token");
622622
623623 FunctionsAiDecompilationApi apiInstance = new FunctionsAiDecompilationApi (defaultClient);
624- Integer functionId = 56 ; // Integer |
624+ Long functionId = 56L ; // Long | The ID of the function being rated
625625 UpsertAiDecomplationRatingRequest upsertAiDecomplationRatingRequest = new UpsertAiDecomplationRatingRequest (); // UpsertAiDecomplationRatingRequest |
626626 try {
627627 BaseResponse result = apiInstance. upsertAiDecompilationRating(functionId, upsertAiDecomplationRatingRequest);
@@ -641,7 +641,7 @@ public class Example {
641641
642642| Name | Type | Description | Notes |
643643| ------------- | ------------- | ------------- | -------------|
644- | ** functionId** | ** Integer ** | | |
644+ | ** functionId** | ** Long ** | The ID of the function being rated | |
645645| ** upsertAiDecomplationRatingRequest** | [ ** UpsertAiDecomplationRatingRequest** ] ( UpsertAiDecomplationRatingRequest.md ) | | |
646646
647647### Return type
0 commit comments