Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

File metadata and controls

33 lines (24 loc) · 1.27 KB

TriageFunctionResponse

Properties

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

Example

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]