AutocompleteResponse

class AutocompleteResponse(val summary: AutocompleteSummary, val results: List<AutocompleteResult> = emptyList())

Response of the Autocomplete Search API. Delivered synchronously as a Result or asynchronously via AutocompleteCallback.

Constructors

Link copied to clipboard
constructor(summary: AutocompleteSummary, results: List<AutocompleteResult> = emptyList())

Properties

Link copied to clipboard

The data returned from the Autocomplete Search API.

Link copied to clipboard

An AutocompleteResponse containing information about the input search phrase and the GeoBias.

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun copy(results: List<AutocompleteResult> = this.results, summary: AutocompleteSummary = this.summary): AutocompleteResponse
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String