Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 823 Bytes

File metadata and controls

29 lines (20 loc) · 823 Bytes

DeleteFile

Properties

Name Type Description Notes
ids List[str]

Example

from gridly.models.delete_file import DeleteFile

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

# convert the object into a dict
delete_file_dict = delete_file_instance.to_dict()
# create an instance of DeleteFile from a dict
delete_file_from_dict = DeleteFile.from_dict(delete_file_dict)

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