RefinedSearchConfig

data class RefinedSearchConfig(var engines: List<SearchEngineDefinition>, var appDefaultEngineId: String?, var appPrivateDefaultEngineId: String?)

Details of the search engines to display to the user, generated as a result of processing the search configuration.

Constructors

Link copied to clipboard
constructor(engines: List<SearchEngineDefinition>, appDefaultEngineId: String?, appPrivateDefaultEngineId: String?)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The identifier of the engine that should be used for the application default engine. If this is undefined, an error has occurred, and the application should either default to the first engine in the engines list or otherwise handle appropriately.

Link copied to clipboard

If specified, the identifier of the engine that should be used for the application default engine in private browsing mode. Only desktop uses this currently.

Link copied to clipboard

A sorted list of engines. Clients may use the engine in the order that this list is specified, or they may implement their own order if they have other requirements.