Interface PreviewFetchDocumentsResponse

The response for the fetch_documents operation.

FetchDocumentsResponse

interface PreviewFetchDocumentsResponse {
    documents: { [key: string]: PreviewFetchedDocument };
    namespace: string;
    usage: PreviewDocumentFetchUsage;
}

Properties

documents: { [key: string]: PreviewFetchedDocument }

A map of document IDs to their fetched documents.

FetchDocumentsResponse

namespace: string

The namespace the documents were fetched from.

FetchDocumentsResponse

FetchDocumentsResponse