| Name |
Type |
Description |
Notes |
| new_mangled_name |
str |
New mangled function name |
[optional] |
| new_name |
str |
New function name |
|
from revengai.models.rename_input_body import RenameInputBody
# TODO update the JSON string below
json = "{}"
# create an instance of RenameInputBody from a JSON string
rename_input_body_instance = RenameInputBody.from_json(json)
# print the JSON string representation of the object
print(RenameInputBody.to_json())
# convert the object into a dict
rename_input_body_dict = rename_input_body_instance.to_dict()
# create an instance of RenameInputBody from a dict
rename_input_body_from_dict = RenameInputBody.from_dict(rename_input_body_dict)
[Back to Model list] [Back to API list] [Back to README]