| Name |
Type |
Description |
Notes |
| id |
int |
Unique identifier of the function |
|
| address |
int |
Address of the function in the binary |
|
| summary |
str |
Summary of the function's behaviour |
|
| score |
float |
Score indicating the function's relevance |
|
| capabilities |
List[str] |
List of capabilities exhibited by the function |
|
from revengai.models.triage_function_response import TriageFunctionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of TriageFunctionResponse from a JSON string
triage_function_response_instance = TriageFunctionResponse.from_json(json)
# print the JSON string representation of the object
print(TriageFunctionResponse.to_json())
# convert the object into a dict
triage_function_response_dict = triage_function_response_instance.to_dict()
# create an instance of TriageFunctionResponse from a dict
triage_function_response_from_dict = TriageFunctionResponse.from_dict(triage_function_response_dict)
[Back to Model list] [Back to API list] [Back to README]