Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SuggestModel

import type { SuggestModel } from "https://aws-api.deno.dev/v0.3/services/cloudsearchdomain.ts?docs=full";

Container for the suggestion information returned in a SuggestResponse.

interface SuggestModel {
found?: number | null;
query?: string | null;
suggestions?: SuggestionMatch[] | null;
}

§Properties

§
found?: number | null
[src]

The number of documents that were found to match the query string.

§
query?: string | null
[src]

The query string specified in the suggest request.

§
suggestions?: SuggestionMatch[] | null
[src]

The documents that match the query string.