dc-management-sdk-js
Version:
Amplience Dynamic Content Management SDK
22 lines (21 loc) • 538 B
TypeScript
import { HalResource } from '../hal/models/HalResource';
import { EmbeddedCollection } from './EmbeddedCollection';
/**
* Class representing top hits for an Algolia Search Index
*/
export declare class SearchIndexTopHits extends HalResource {
/**
* Record ObjectID that matched the search
*/
hit: string;
/**
* The number of hits
*/
count: number;
}
/**
* @hidden
*/
export declare class SearchIndexTopHitsCollection extends EmbeddedCollection<SearchIndexTopHits> {
constructor(data?: any);
}