SearchEngineUrl

data class SearchEngineUrl(var base: String, var method: String, var params: List<SearchUrlParam>, var searchTermParamName: String?)

Defines an individual search engine URL.

Constructors

Link copied to clipboard
constructor(base: String, method: String, params: List<SearchUrlParam>, searchTermParamName: String?)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The PrePath and FilePath of the URL. May include variables for engines which have a variable FilePath, e.g. {searchTerm} for when a search term is within the path of the url.

Link copied to clipboard

The HTTP method to use to send the request (GET or POST). If the engine definition has not specified the method, it defaults to GET.

Link copied to clipboard

The parameters for this URL.

Link copied to clipboard

The name of the query parameter for the search term. Automatically appended to the end of the query. This may be skipped if {searchTerm} is included in the base.