| Name | Type | Description | Notes |
|---|---|---|---|
| function_maps | FunctionMapping | A map of function ids to function addresses for the analysis, and it's inverse. |
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)