UNPKG

kaltura-node-typescript-client

Version:
28 lines (27 loc) 1.26 kB
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaLiveEntry } from './KalturaLiveEntry'; import { KalturaEntryServerNodeType } from './KalturaEntryServerNodeType'; import { KalturaEntryServerNodeStatus } from './KalturaEntryServerNodeStatus'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface LiveChannelCreateRecordedEntryActionArgs extends KalturaRequestArgs { entryId: string; mediaServerIndex: KalturaEntryServerNodeType; liveEntryStatus: KalturaEntryServerNodeStatus; } /** * Build request payload for service 'liveChannel' action 'createRecordedEntry'. * * Usage: Create recorded entry id if it doesn't exist and make sure it happens on the DC that the live entry was created on * * Server response type: KalturaLiveEntry * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class LiveChannelCreateRecordedEntryAction extends KalturaRequest<KalturaLiveEntry> { entryId: string; mediaServerIndex: KalturaEntryServerNodeType; liveEntryStatus: KalturaEntryServerNodeStatus; constructor(data: LiveChannelCreateRecordedEntryActionArgs); protected _getMetadata(): KalturaObjectMetadata; }