lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

DeleteLiltCreateContent200Response

Properties

Name Type Description Notes
id int The ID of the deleted Lilt Create content. [optional]

Example

from lilt.models.delete_lilt_create_content200_response import DeleteLiltCreateContent200Response

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

# convert the object into a dict
delete_lilt_create_content200_response_dict = delete_lilt_create_content200_response_instance.to_dict()
# create an instance of DeleteLiltCreateContent200Response from a dict
delete_lilt_create_content200_response_from_dict = DeleteLiltCreateContent200Response.from_dict(delete_lilt_create_content200_response_dict)

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