Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

File metadata and controls

29 lines (20 loc) · 1.1 KB

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]