| Name |
Type |
Description |
Notes |
| entities |
List[ResolvedEntity] |
One entry per token in the tokenised source, with the name it resolves to and its hover metadata. |
[optional] |
| line_attribution |
object |
|
[optional] |
| predicted_function_name |
str |
Predicted function name from the AI model |
[optional] |
| status |
str |
Task status |
|
| tokenised_decompilation |
str |
Source code with placeholder tokens |
[optional] |
from revengai.models.tokenised_data import TokenisedData
# TODO update the JSON string below
json = "{}"
# create an instance of TokenisedData from a JSON string
tokenised_data_instance = TokenisedData.from_json(json)
# print the JSON string representation of the object
print(TokenisedData.to_json())
# convert the object into a dict
tokenised_data_dict = tokenised_data_instance.to_dict()
# create an instance of TokenisedData from a dict
tokenised_data_from_dict = TokenisedData.from_dict(tokenised_data_dict)
[Back to Model list] [Back to API list] [Back to README]