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

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]

Example

from revengai.models.function_rename import FunctionRename

# TODO update the JSON string below
json = "{}"
# create an instance of FunctionRename from a JSON string
function_rename_instance = FunctionRename.from_json(json)
# print the JSON string representation of the object
print(FunctionRename.to_json())

# convert the object into a dict
function_rename_dict = function_rename_instance.to_dict()
# create an instance of FunctionRename from a dict
function_rename_from_dict = FunctionRename.from_dict(function_rename_dict)

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