BatchMemoryCreationRequest
BatchMemoryCreationRequest documentation for Python SDK
Request body for creating multiple memories in a single batch operation
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| validate | object | [optional] | |
| requests | List[MemoryCreationRequest] | Array of memory creation requests |
Example
from goodmem_client.models.batch_memory_creation_request import BatchMemoryCreationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BatchMemoryCreationRequest from a JSON string
batch_memory_creation_request_instance = BatchMemoryCreationRequest.from_json(json)
# print the JSON string representation of the object
print(BatchMemoryCreationRequest.to_json())
# convert the object into a dict
batch_memory_creation_request_dict = batch_memory_creation_request_instance.to_dict()
# create an instance of BatchMemoryCreationRequest from a dict
batch_memory_creation_request_from_dict = BatchMemoryCreationRequest.from_dict(batch_memory_creation_request_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK