| Name | Type | Description | Notes |
|---|
| function_id | int | The function ID | |
| function_name | str | The name of the function | |
| binary_name | str | The name of the binary the function belongs to | |
| created_at | datetime | The creation date of the function | |
| model_id | int | The model ID used to analyze the binary the function belongs to | |
| model_name | str | The name of the model used to analyze the binary the function belongs to | |
| owned_by | str | The owner of the binary the function belongs to | |
fromrevengai.models.function_search_resultimportFunctionSearchResult# TODO update the JSON string belowjson="{}"# create an instance of FunctionSearchResult from a JSON stringfunction_search_result_instance=FunctionSearchResult.from_json(json)
# print the JSON string representation of the objectprint(FunctionSearchResult.to_json())
# convert the object into a dictfunction_search_result_dict=function_search_result_instance.to_dict()
# create an instance of FunctionSearchResult from a dictfunction_search_result_from_dict=FunctionSearchResult.from_dict(function_search_result_dict)[Back to Model list][Back to API list][Back to README]