| Name | Type | Description | Notes |
|---|---|---|---|
| new_name | str | The new name for the function | |
| new_mangled_name | str | The new mangled name for the function | |
| source_type | FunctionSourceType | The source that triggered the rename | [optional] |
fromrevengai.models.function_renameimportFunctionRename# TODO update the JSON string belowjson="{}"# create an instance of FunctionRename from a JSON stringfunction_rename_instance=FunctionRename.from_json(json)
# print the JSON string representation of the objectprint(FunctionRename.to_json())
# convert the object into a dictfunction_rename_dict=function_rename_instance.to_dict()
# create an instance of FunctionRename from a dictfunction_rename_from_dict=FunctionRename.from_dict(function_rename_dict)