Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

FunctionRenameMap

Properties

NameTypeDescriptionNotes
function_idintThe ID of the function to rename
new_namestrThe new name for the function
new_mangled_namestrThe new mangled name for the function

Example

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]