UNPKG

kaltura-node-typescript-client

Version:
23 lines (22 loc) 926 B
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaStatsKmcEvent } from './KalturaStatsKmcEvent'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface StatsKmcCollectActionArgs extends KalturaRequestArgs { kmcEvent: KalturaStatsKmcEvent; } /** * Build request payload for service 'stats' action 'kmcCollect'. * * Usage: Will collect the kmcEvent sent form the KMC client * // this will actually be an empty function because all events will be sent using GET and will anyway be logged in the Apache log * * Server response type: void * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class StatsKmcCollectAction extends KalturaRequest<void> { kmcEvent: KalturaStatsKmcEvent; constructor(data: StatsKmcCollectActionArgs); protected _getMetadata(): KalturaObjectMetadata; }