Skip to content

Latest commit

History

History
35 lines (26 loc) · 1.42 KB

File metadata and controls

35 lines (26 loc) · 1.42 KB

FunctionSearchResult

Properties

NameTypeDescriptionNotes
function_idintThe function ID
function_namestrThe name of the function
binary_namestrThe name of the binary the function belongs to
created_atdatetimeThe creation date of the function
model_idintThe model ID used to analyze the binary the function belongs to
model_namestrThe name of the model used to analyze the binary the function belongs to
owned_bystrThe owner of the binary the function belongs to

Example

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]