Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 940 Bytes

File metadata and controls

29 lines (20 loc) · 940 Bytes

RenameOutputBody

Properties

Name Type Description Notes
renamed_count int Number of functions renamed

Example

from revengai.models.rename_output_body import RenameOutputBody

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

# convert the object into a dict
rename_output_body_dict = rename_output_body_instance.to_dict()
# create an instance of RenameOutputBody from a dict
rename_output_body_from_dict = RenameOutputBody.from_dict(rename_output_body_dict)

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