UNPKG

kaltura-node-typescript-client

Version:
34 lines (33 loc) 1.34 kB
import { KalturaObjectMetadata } from '../kaltura-object-base'; import { KalturaLiveEntry } from './KalturaLiveEntry'; import { KalturaEntryServerNodeType } from './KalturaEntryServerNodeType'; import { KalturaDataCenterContentResource } from './KalturaDataCenterContentResource'; import { KalturaRequest, KalturaRequestArgs } from '../kaltura-request'; export interface LiveChannelSetRecordedContentActionArgs extends KalturaRequestArgs { entryId: string; mediaServerIndex: KalturaEntryServerNodeType; resource: KalturaDataCenterContentResource; duration: number; recordedEntryId?: string; flavorParamsId?: number; } /** * Build request payload for service 'liveChannel' action 'setRecordedContent'. * * Usage: Set recorded video to live entry * * Server response type: KalturaLiveEntry * Server failure response type: KalturaAPIException * @class * @extends KalturaRequest */ export declare class LiveChannelSetRecordedContentAction extends KalturaRequest<KalturaLiveEntry> { entryId: string; mediaServerIndex: KalturaEntryServerNodeType; resource: KalturaDataCenterContentResource; duration: number; recordedEntryId: string; flavorParamsId: number; constructor(data: LiveChannelSetRecordedContentActionArgs); protected _getMetadata(): KalturaObjectMetadata; }