lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

FileDeleteResponse

Properties

Name Type Description Notes
id int A unique File identifier. [optional]
deleted bool If the operation succeeded, then `true`. Otherwise, `false`. [optional]

Example

from lilt.models.file_delete_response import FileDeleteResponse

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

# convert the object into a dict
file_delete_response_dict = file_delete_response_instance.to_dict()
# create an instance of FileDeleteResponse from a dict
file_delete_response_from_dict = FileDeleteResponse.from_dict(file_delete_response_dict)

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