BatchMemoryResult Model
BatchMemoryResult Model documentation for Python SDK
Individual item result for a batch memories operation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | Whether this individual operation succeeded | |
| memory_id | str | Memory ID associated with this result (present for batchGet errors and batchDelete results) | [optional] |
| memory | Memory | [optional] | |
| error | ErrorDetail | [optional] |
Example
from goodmem_client.models.batch_memory_result import BatchMemoryResult
# TODO update the JSON string below
json = "{}"
# create an instance of BatchMemoryResult from a JSON string
batch_memory_result_instance = BatchMemoryResult.from_json(json)
# print the JSON string representation of the object
print(BatchMemoryResult.to_json())
# convert the object into a dict
batch_memory_result_dict = batch_memory_result_instance.to_dict()
# create an instance of BatchMemoryResult from a dict
batch_memory_result_from_dict = BatchMemoryResult.from_dict(batch_memory_result_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK