The parameters for deleting a file.
| Name | Type | Description | Notes |
|---|---|---|---|
| delete_after | bool | Specifies whether to delete a file after the editing session is finished or not. | [optional] |
| immediately | bool | Specifies whether to move a file to the \Trash\ folder or delete it immediately. | [optional] |
from docspace_api_sdk.models.delete import Delete
# TODO update the JSON string below
json = "{}"
# create an instance of Delete from a JSON string
delete_instance = Delete.from_json(json)
# print the JSON string representation of the object
print(Delete.to_json())
# convert the object into a dict
delete_dict = delete_instance.to_dict()
# create an instance of Delete from a dict
delete_from_dict = Delete.from_dict(delete_dict)