lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

ProjectDeleteResponse

Properties

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

Example

from lilt.models.project_delete_response import ProjectDeleteResponse

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

# convert the object into a dict
project_delete_response_dict = project_delete_response_instance.to_dict()
# create an instance of ProjectDeleteResponse from a dict
project_delete_response_from_dict = ProjectDeleteResponse.from_dict(project_delete_response_dict)

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