| Name | Type | Description | Notes |
|---|
| binary_id | int | | |
| debug | bool | | |
| function_id | int | | |
| function_name | str | | |
| function_size | int | | |
| function_vaddr | int | | |
| mangled_name | str | | [optional] |
| source_analysis_id | int | ID of the analysis the source function belongs to, if any | [optional] |
| source_binary_id | int | | [optional] |
| source_function_id | int | ID of the source function this name was transferred from, if any | [optional] |
| source_type | str | | |
fromrevengai.models.analysis_function_entryimportAnalysisFunctionEntry# TODO update the JSON string belowjson="{}"# create an instance of AnalysisFunctionEntry from a JSON stringanalysis_function_entry_instance=AnalysisFunctionEntry.from_json(json)
# print the JSON string representation of the objectprint(AnalysisFunctionEntry.to_json())
# convert the object into a dictanalysis_function_entry_dict=analysis_function_entry_instance.to_dict()
# create an instance of AnalysisFunctionEntry from a dictanalysis_function_entry_from_dict=AnalysisFunctionEntry.from_dict(analysis_function_entry_dict)[Back to Model list][Back to API list][Back to README]