RetrieveMemoryEvent
RetrieveMemoryEvent documentation for Python SDK
Streaming event from memory retrieval operation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| result_set_boundary | ResultSetBoundary | [optional] | |
| abstract_reply | AbstractReply | [optional] | |
| retrieved_item | RetrievedItem | [optional] | |
| memory_definition | Memory | [optional] | |
| status | GoodMemStatus | [optional] |
Example
from goodmem_client.models.retrieve_memory_event import RetrieveMemoryEvent
# TODO update the JSON string below
json = "{}"
# create an instance of RetrieveMemoryEvent from a JSON string
retrieve_memory_event_instance = RetrieveMemoryEvent.from_json(json)
# print the JSON string representation of the object
print(RetrieveMemoryEvent.to_json())
# convert the object into a dict
retrieve_memory_event_dict = retrieve_memory_event_instance.to_dict()
# create an instance of RetrieveMemoryEvent from a dict
retrieve_memory_event_from_dict = RetrieveMemoryEvent.from_dict(retrieve_memory_event_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK