API bindings for the Lilt REST API.
Name | Type | Description | Notes |
---|---|---|---|
success | bool | [optional] |
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)