| Name |
Type |
Description |
Notes |
| body |
str |
|
|
from ksapi.models.edit_memory_chunk_request import EditMemoryChunkRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EditMemoryChunkRequest from a JSON string
edit_memory_chunk_request_instance = EditMemoryChunkRequest.from_json(json)
# print the JSON string representation of the object
print(EditMemoryChunkRequest.to_json())
# convert the object into a dict
edit_memory_chunk_request_dict = edit_memory_chunk_request_instance.to_dict()
# create an instance of EditMemoryChunkRequest from a dict
edit_memory_chunk_request_from_dict = EditMemoryChunkRequest.from_dict(edit_memory_chunk_request_dict)
[Back to Model list] [Back to API list] [Back to README]