SearchRequest

data class SearchRequest @JvmOverloads constructor(    val searchInput: String,     val location: GeoCoordinates,     val maxResultCount: Int = 10,     val boundary: GeoBoundingBox? = null,     val languageTag: String? = null,     val resultTypeFilter: List<ResultType>? = null,     val countryIsoFilter: List<String>? = null)

Constructors

Link copied to clipboard
fun SearchRequest(    searchInput: String,     location: GeoCoordinates,     maxResultCount: Int = 10,     boundary: GeoBoundingBox? = null,     languageTag: String? = null,     resultTypeFilter: List<ResultType>? = null,     countryIsoFilter: List<String>? = null)

Properties

Link copied to clipboard
val boundary: GeoBoundingBox? = null
Link copied to clipboard
val countryIsoFilter: List<String>? = null
Link copied to clipboard
val languageTag: String? = null
Link copied to clipboard
val location: GeoCoordinates
Link copied to clipboard
val maxResultCount: Int = 10
Link copied to clipboard
val resultTypeFilter: List<ResultType>? = null
Link copied to clipboard
val searchInput: String