GoodMem
ReferenceClient SDKsPython SDKResponses

MemoryListResponse

MemoryListResponse documentation for Python SDK

Response containing a list of memories within a space

Properties

NameTypeDescriptionNotes
memoriesList[Memory]Array of memories in the space
next_tokenstrToken for retrieving the next page of results[optional]

Example

from goodmem_client.models.memory_list_response import MemoryListResponse

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

# convert the object into a dict
memory_list_response_dict = memory_list_response_instance.to_dict()
# create an instance of MemoryListResponse from a dict
memory_list_response_from_dict = MemoryListResponse.from_dict(memory_list_response_dict)

↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK

On this page