MemoryStoreUpdateResponse interface
Provides the status of a memory store update operation.
Properties
| error | Error object that describes the error when status is "failed". |
| result | The result of memory store update operation when status is "completed". |
| status | The status of the memory update operation. One of "queued", "in_progress", "completed", "failed", or "superseded". |
| superseded_by | The update_id the operation was superseded by when status is "superseded". |
| update_id | The unique ID of this update request. Use this value as previous_update_id in subsequent requests to perform incremental updates. |
Property Details
error
Error object that describes the error when status is "failed".
error?: ApiError
Property Value
result
The result of memory store update operation when status is "completed".
result?: MemoryStoreUpdateCompletedResult
Property Value
status
The status of the memory update operation. One of "queued", "in_progress", "completed", "failed", or "superseded".
status: MemoryStoreUpdateStatus
Property Value
superseded_by
The update_id the operation was superseded by when status is "superseded".
superseded_by?: string
Property Value
string
update_id
The unique ID of this update request. Use this value as previous_update_id in subsequent requests to perform incremental updates.
update_id: string
Property Value
string