Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.01 KB

File metadata and controls

30 lines (22 loc) · 1.01 KB

Delete

The parameters for deleting a file.

Properties

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]

Example

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)

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