Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

RenameInputBody

Properties

Name Type Description Notes
new_mangled_name str New mangled function name [optional]
new_name str New function name
source_type str Source that triggered the rename [optional]

Example

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]