kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
13 lines (12 loc) • 721 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaESearchHistory } from './KalturaESearchHistory';
import { KalturaESearchAggregationResponseItem } from './KalturaESearchAggregationResponseItem';
import { KalturaListResponse, KalturaListResponseArgs } from './KalturaListResponse';
export interface KalturaESearchHistoryListResponseArgs extends KalturaListResponseArgs {
}
export declare class KalturaESearchHistoryListResponse extends KalturaListResponse {
readonly objects: KalturaESearchHistory[];
readonly aggregations: KalturaESearchAggregationResponseItem[];
constructor(data?: KalturaESearchHistoryListResponseArgs);
protected _getMetadata(): KalturaObjectMetadata;
}