kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
23 lines (22 loc) • 760 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request';
export interface LiveStreamArchiveActionArgs extends KalturaRequestArgs {
liveEntryId: string;
vodEntryId: string;
}
/**
* Build request payload for service 'liveStream' action 'archive'.
*
* Usage: Archive a live entry which was recorded
*
* Server response type: boolean
* Server failure response type: KalturaAPIException
* @class
* @extends KalturaRequest
*/
export declare class LiveStreamArchiveAction extends KalturaRequest<boolean> {
liveEntryId: string;
vodEntryId: string;
constructor(data: LiveStreamArchiveActionArgs);
protected _getMetadata(): KalturaObjectMetadata;
}