SearchResult
data class SearchResult<Document>(val document: Document, val score: Score, val id: String? = null, val metadata: JsonObject? = null, val namespace: String? = null)(source)
Represents a single result returned from a storage search operation.
Type Parameters
Document
the type of the stored document
Constructors
Link copied to clipboard
constructor(document: Document, score: Score, id: String? = null, metadata: JsonObject? = null, namespace: String? = null)