AlongRouteSummary

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.

Parameters

query

The query that resulted in this response.

queryTime

The time it took to process the query.

numResults

The number of results returned in this batch.

offset

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

totalResults

The total number of results.

fuzzyLevel

The maximum fuzzy level required to provide results. Fuzzy level can be in the range of 1-4.

Constructors

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

Properties

Link copied to clipboard
val fuzzyLevel: Int
Link copied to clipboard
val numResults: Int
Link copied to clipboard
val offset: Int
Link copied to clipboard
val query: String
Link copied to clipboard
val queryTime: Duration
Link copied to clipboard
val totalResults: Int