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

SearchDocumentChunksResponse

import type { SearchDocumentChunksResponse } from "https://googleapis.deno.dev/v1/developerknowledge:v1.ts";

Response message for DeveloperKnowledge.SearchDocumentChunks.

interface SearchDocumentChunksResponse {
nextPageToken?: string;
results?: DocumentChunk[];
}

§Properties

§
nextPageToken?: string
[src]

Optional. Provides a token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

§
results?: DocumentChunk[]
[src]

Contains the search results for the given query. Each DocumentChunk in this list contains a snippet of content relevant to the search query. Use the DocumentChunk.parent field of each result with DeveloperKnowledge.GetDocument or DeveloperKnowledge.BatchGetDocuments to retrieve the full document content.