open class Summary : Serializable
The summary of a response to a Search request.
Summary()
Empty constructor for the Summary(query: String!, queryType: String!, queryTime: Int, numResults: Int, offset: Int, totalResults: Int, fuzzyLevel: Int, geoBias: LatLng!)
Default constructor for the |
var fuzzyLevel: Int
The fuzzy level in Fuzzy Search. |
|
var geoBias: LatLng!
The position used to bias the results. |
|
var numResults: Int
The number of results returned in this batch. |
|
var offset: Int
The offset of the results in the collection of all results. |
|
var query: String!
The query that resulted in this response. |
|
var queryTime: Int
The time it took to process this query. |
|
var queryType: String!
The type of the query. |
|
var totalResults: Int
The total number of results. |
open fun getFuzzyLevel(): Int
Returns the fuzzy level in Fuzzy Search. |
|
open fun getGeoBias(): LatLng!
Returns the position used to bias the results. |
|
open fun getNumResults(): Int
Returns the number of results returned in this batch. |
|
open fun getOffset(): Int
Returns the offset of the results in the collection of all results. |
|
open fun getQuery(): String!
Returns the query that resulted in this response. |
|
open fun getQueryTime(): Int
Returns the time it took to process this query. |
|
open fun getQueryType(): String!
Returns the type of the query. |
|
open fun getTotalResults(): Int
Returns the total number of results. |
|
open fun toString(): String |