lilt-python

API bindings for the Lilt REST API.

View the Project on GitHub lilt/lilt-python

DeleteSegmentFromMemoryResponse

Properties

Name Type Description Notes
success bool   [optional]

Example

from lilt.models.delete_segment_from_memory_response import DeleteSegmentFromMemoryResponse

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

# convert the object into a dict
delete_segment_from_memory_response_dict = delete_segment_from_memory_response_instance.to_dict()
# create an instance of DeleteSegmentFromMemoryResponse from a dict
delete_segment_from_memory_response_from_dict = DeleteSegmentFromMemoryResponse.from_dict(delete_segment_from_memory_response_dict)

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