| Name | Type | Description | Notes |
|---|
| function_id | int | The ID of the function to rename | |
| new_name | str | The new name for the function | |
| new_mangled_name | str | The new mangled name for the function | |
fromrevengai.models.function_rename_mapimportFunctionRenameMap# TODO update the JSON string belowjson="{}"# create an instance of FunctionRenameMap from a JSON stringfunction_rename_map_instance=FunctionRenameMap.from_json(json)
# print the JSON string representation of the objectprint(FunctionRenameMap.to_json())
# convert the object into a dictfunction_rename_map_dict=function_rename_map_instance.to_dict()
# create an instance of FunctionRenameMap from a dictfunction_rename_map_from_dict=FunctionRenameMap.from_dict(function_rename_map_dict)[Back to Model list][Back to API list][Back to README]