Package version:

Interface AutocompleteResult

The result of Autocomplete query.

interface AutocompleteResult {
    coverage?: number;
    results: AutocompleteItem[];
}

Properties

Properties

coverage?: number

A value indicating the percentage of the index that was considered by the autocomplete request, or null if minimumCoverage was not specified in the request. NOTE: This property will not be serialized. It can only be populated by the server.

results: AutocompleteItem[]

The list of returned Autocompleted items. NOTE: This property will not be serialized. It can only be populated by the server.