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?)
Properties
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.