SearchResult

data class SearchResult(val title: String, val url: String, val description: String, val extraSnippets: List<String> = emptyList())

A single web search result.

Constructors

Link copied to clipboard
constructor(title: String, url: String, description: String, extraSnippets: List<String> = emptyList())

Properties

Link copied to clipboard

A text snippet / description from the page.

Link copied to clipboard

Additional text snippets from the page (may be empty).

Link copied to clipboard

The page title.

Link copied to clipboard
val url: String

The page URL.