Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

BatchRenameInputBody

Properties

Name Type Description Notes
functions List[BatchRenameItem] List of functions to rename

Example

from revengai.models.batch_rename_input_body import BatchRenameInputBody

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

# convert the object into a dict
batch_rename_input_body_dict = batch_rename_input_body_instance.to_dict()
# create an instance of BatchRenameInputBody from a dict
batch_rename_input_body_from_dict = BatchRenameInputBody.from_dict(batch_rename_input_body_dict)

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