sdk-search / com.tomtom.online.sdk.search.data.common / Summary

Summary

open class Summary : Serializable

The summary of a Response to a Search Request.

Constructors

<init>

Summary()

Empty constructor for the Summary.

Summary(query: String!, queryType: String!, queryTime: Int, numResults: Int, offset: Int, totalResults: Int, fuzzyLevel: Int, geoBias: LatLng!)

Default constructor for the Summary.

Properties

fuzzyLevel

var fuzzyLevel: Int

The fuzzy level in Fuzzy Search. -- GETTER --

geoBias

var geoBias: LatLng!

The position used to bias the results. -- GETTER --

numResults

var numResults: Int

The number of results returned in this batch. -- GETTER --

offset

var offset: Int

The offset of the results in the collection of all results. -- GETTER --

query

var query: String!

The query that resulted in this Response. -- GETTER --

queryTime

var queryTime: Int

The time it took to process this query. -- GETTER --

queryType

var queryType: String!

The type of the query. -- GETTER --

totalResults

var totalResults: Int

The total number of results. -- GETTER --