SearchMemoryResponse

data class SearchMemoryResponse(val memories: List<MemoryEntry>, val nextPageToken: String? = null)

Represents the response from a search operation in the memory service.

Constructors

Link copied to clipboard
constructor(memories: List<MemoryEntry>, nextPageToken: String? = null)

Properties

Link copied to clipboard

The list of memory entries matching the search criteria.

Link copied to clipboard
val nextPageToken: String? = null

A token to retrieve the next page of results, or null if there are no more results.