JsonEngineUrl

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

Defines an individual search engine URL. This is defined separately to types::SearchEngineUrl as various fields may be optional in the supplied configuration.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
var base: String?

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.