Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1019 Bytes

File metadata and controls

31 lines (22 loc) · 1019 Bytes

MemoryChunkResponse

Properties

Name Type Description Notes
chunk_id UUID
kind MemoryKind
body str

Example

from ksapi.models.memory_chunk_response import MemoryChunkResponse

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

# convert the object into a dict
memory_chunk_response_dict = memory_chunk_response_instance.to_dict()
# create an instance of MemoryChunkResponse from a dict
memory_chunk_response_from_dict = MemoryChunkResponse.from_dict(memory_chunk_response_dict)

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