Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

FunctionRename

Properties

NameTypeDescriptionNotes
new_namestrThe new name for the function
new_mangled_namestrThe new mangled name for the function
source_typeFunctionSourceTypeThe source that triggered the rename[optional]

Example

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)

[Back to Model list][Back to API list][Back to README]