| Name | Type | Description | Notes |
|---|---|---|---|
| ids | List[str] |
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)