kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
33 lines (32 loc) • 1.34 kB
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaReportGraph } from './KalturaReportGraph';
import { KalturaReportType } from './KalturaReportType';
import { KalturaReportInputFilter } from './KalturaReportInputFilter';
import { KalturaReportResponseOptions } from './KalturaReportResponseOptions';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface ReportGetGraphsActionArgs extends KalturaRequestArgs {
reportType: KalturaReportType;
reportInputFilter: KalturaReportInputFilter;
dimension?: string;
objectIds?: string;
responseOptions?: KalturaReportResponseOptions;
}
/**
* Build request payload for service 'report' action 'getGraphs'.
*
* Usage: report getGraphs action allows to get a graph data for a specific report
*
* Server response type: KalturaReportGraph[]
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class ReportGetGraphsAction extends KalturaRequest<KalturaReportGraph[]> {
reportType: KalturaReportType;
reportInputFilter: KalturaReportInputFilter;
dimension: string;
objectIds: string;
responseOptions: KalturaReportResponseOptions;
constructor(data: ReportGetGraphsActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}