Package com.tomtom.sdk.search.client.model.summary

Types

Link copied to clipboard
data class AlongRouteSummary(    val query: String,     val queryTime: Duration,     val numResults: Int,     val offset: Int,     val totalResults: Int,     @IntRange(from = 1, to = 4) val fuzzyLevel: Int)

The summary of an Along Route Search API call.

Link copied to clipboard
data class AutocompleteSummary(val inputQuery: String, val geoBias: GeoBias? = null)

Summary of the parameters passed to the Autocomplete engine.

Link copied to clipboard
data class SearchRequestSummary(    val numResults: Int,     val offset: Int,     val totalResults: Int,     val query: String = "",     val geoBias: GeoCoordinate? = null,     val queryTime: Duration? = null,     @IntRange(from = 1, to = 4) val fuzzyLevel: Int)

The summary of a Search API call.