GoodMem
ReferenceClient SDKsPython SDKModels

BatchMemoryResult Model

BatchMemoryResult Model documentation for Python SDK

Individual item result for a batch memories operation

Properties

NameTypeDescriptionNotes
successboolWhether this individual operation succeeded
memory_idstrMemory ID associated with this result (present for batchGet errors and batchDelete results)[optional]
memoryMemory[optional]
errorErrorDetail[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

On this page