BatchMemoryDeletionRequest
BatchMemoryDeletionRequest documentation for Python SDK
Request body for deleting multiple memories by their IDs
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| validate | object | [optional] | |
| memory_ids | List[str] | Array of memory IDs to delete |
Example
from goodmem_client.models.batch_memory_deletion_request import BatchMemoryDeletionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of BatchMemoryDeletionRequest from a JSON string
batch_memory_deletion_request_instance = BatchMemoryDeletionRequest.from_json(json)
# print the JSON string representation of the object
print(BatchMemoryDeletionRequest.to_json())
# convert the object into a dict
batch_memory_deletion_request_dict = batch_memory_deletion_request_instance.to_dict()
# create an instance of BatchMemoryDeletionRequest from a dict
batch_memory_deletion_request_from_dict = BatchMemoryDeletionRequest.from_dict(batch_memory_deletion_request_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK