Interface AsyncSearchResultContent

Represents a search request promise result content.

This is the value of an AsyncSearchResult.


Data Retrievers

interface AsyncSearchResultContent {
    geometricInstanceIds?: Uint32Array;
    hasOtherResults: boolean;
    searchDocuments?: SearchDocumentResultInterface[];
}

Properties

geometricInstanceIds?: Uint32Array

The geometric instance ids result of the search.

This is the same as SearchInterface.getGeometricInstanceIds.

hasOtherResults: boolean

Tells if the search result would have returned more results if the search would have been limited to a superior maximum number of hits.

This is the same as SearchInterface.hasOtherResults.

searchDocuments?: SearchDocumentResultInterface[]

The search document result.

This is the same as SearchInterface.getSearchDocuments.