data class SearchResult
(source)
Encapsulates a set of properties which define a result of querying history storage.
SearchResult(id: String, url: String, score: Int, title: String? = null)
Encapsulates a set of properties which define a result of querying history storage. |
val id: String
A permanent identifier which might be used for caching or at the UI layer. |
|
val score: Int
An unbounded, nonlinear score (larger is more relevant) which is used to rank this SearchResult against others. |
|
val title: String?
An optional title of the page. |
|
val url: String
A URL of the page. |