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

NameTypeDescriptionNotes
function_mapsFunctionMappingA map of function ids to function addresses for the analysis, and it's inverse.

Example

fromrevengai.models.analysis_function_mappingimportAnalysisFunctionMapping# TODO update the JSON string belowjson="{}"# create an instance of AnalysisFunctionMapping from a JSON stringanalysis_function_mapping_instance=AnalysisFunctionMapping.from_json(json)
# print the JSON string representation of the objectprint(AnalysisFunctionMapping.to_json())
# convert the object into a dictanalysis_function_mapping_dict=analysis_function_mapping_instance.to_dict()
# create an instance of AnalysisFunctionMapping from a dictanalysis_function_mapping_from_dict=AnalysisFunctionMapping.from_dict(analysis_function_mapping_dict)

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