Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

AnalysisFunctionMapping

Properties

Name Type Description Notes
function_maps FunctionMapping A map of function ids to function addresses for the analysis, and it's inverse.

Example

from revengai.models.analysis_function_mapping import AnalysisFunctionMapping

# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisFunctionMapping from a JSON string
analysis_function_mapping_instance = AnalysisFunctionMapping.from_json(json)
# print the JSON string representation of the object
print(AnalysisFunctionMapping.to_json())

# convert the object into a dict
analysis_function_mapping_dict = analysis_function_mapping_instance.to_dict()
# create an instance of AnalysisFunctionMapping from a dict
analysis_function_mapping_from_dict = AnalysisFunctionMapping.from_dict(analysis_function_mapping_dict)

[Back to Model list] [Back to API list] [Back to README]