VisitedSERP

data class VisitedSERP(val url: Uri, val title: String, val query: String, val visits: List<LocalDateTime>) : HistoryEntry

Data class representing a visited search engine results page (SERP) subtype of history entry.

Constructors

Link copied to clipboard
constructor(url: Uri, title: String, query: String, visits: List<LocalDateTime>)

Properties

Link copied to clipboard

The search query used for the SERP.

Link copied to clipboard
open override val title: String

The title of the SERP.

Link copied to clipboard
open override val url: Uri

The URL of the SERP.

Link copied to clipboard
open override val visits: List<LocalDateTime>

List of LocalDateTime objects representing the visit times.