BatchMemoryResponse
BatchMemoryResponse documentation for Python SDK
Response containing per-item results for a batch memories operation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[BatchMemoryResult] | Array of per-item results |
Example
from goodmem_client.models.batch_memory_response import BatchMemoryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BatchMemoryResponse from a JSON string
batch_memory_response_instance = BatchMemoryResponse.from_json(json)
# print the JSON string representation of the object
print(BatchMemoryResponse.to_json())
# convert the object into a dict
batch_memory_response_dict = batch_memory_response_instance.to_dict()
# create an instance of BatchMemoryResponse from a dict
batch_memory_response_from_dict = BatchMemoryResponse.from_dict(batch_memory_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK