SearchEngineDefinition

data class SearchEngineDefinition(    var aliases: List<String>,     var charset: String,     var classification: SearchEngineClassification,     var identifier: String,     var name: String,     var optional: Boolean,     var partnerCode: String,     var telemetrySuffix: String,     var urls: SearchEngineUrls,     var orderHint: UInt?,     var clickUrl: String?)

A definition for an individual search engine to be presented to the user.

Constructors

Link copied to clipboard
constructor(    aliases: List<String>,     charset: String,     classification: SearchEngineClassification,     identifier: String,     name: String,     optional: Boolean,     partnerCode: String,     telemetrySuffix: String,     urls: SearchEngineUrls,     orderHint: UInt?,     clickUrl: String?)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list of aliases for this engine.

Link copied to clipboard

The character set this engine uses for queries.

Link copied to clipboard

The classification of search engine according to the main search types (e.g. general, shopping, travel, dictionary). Currently, only marking as a general search engine is supported. On Android, only general search engines may be selected as "default" search engines.

Link copied to clipboard

The url used for reporting clicks.

Link copied to clipboard

The identifier of the search engine. This is used as an internal identifier, e.g. for saving the user's settings for the engine. It is also used to form the base telemetry id and may be extended by telemetrySuffix.

Link copied to clipboard

The user visible name of the search engine.

Link copied to clipboard

This search engine is presented as an option that the user may enable. The application should not include these in the default list of the user's engines. If not supported, it should filter them out.

Link copied to clipboard

A hint to the order that this engine should be in the engine list. This is derived from the engineOrders section of the search configuration. The higher the number, the nearer to the front it should be. If the number is not specified, other methods of sorting may be relied upon (e.g. alphabetical).

Link copied to clipboard

The partner code for the engine. This will be inserted into parameters which include {partnerCode}. May be the empty string.

Link copied to clipboard

Optional suffix that is appended to the search engine identifier following a dash, i.e. <identifier>-<suffix>. If it is an empty string no dash should be appended.

Link copied to clipboard

The URLs associated with the search engine.