import { _SuggestionMatch, _UnmarshalledSuggestionMatch } from "./_SuggestionMatch"; /** *
Container for the suggestion information returned in a SuggestResponse.
The query string specified in the suggest request.
*/ query?: string; /** *The number of documents that were found to match the query string.
*/ found?: number; /** *The documents that match the query string.
*/ suggestions?: Array<_SuggestionMatch> | Iterable<_SuggestionMatch>; } export interface _UnmarshalledSuggestModel extends _SuggestModel { /** *The documents that match the query string.
*/ suggestions?: Array<_UnmarshalledSuggestionMatch>; }