@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
15 lines (14 loc) • 814 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaLiveStreamParams } from './KalturaLiveStreamParams';
import { KalturaLiveEntryServerNodeRecordingInfo } from './KalturaLiveEntryServerNodeRecordingInfo';
import { KalturaEntryServerNode, KalturaEntryServerNodeArgs } from './KalturaEntryServerNode';
export interface KalturaLiveEntryServerNodeArgs extends KalturaEntryServerNodeArgs {
streams?: KalturaLiveStreamParams[];
recordingInfo?: KalturaLiveEntryServerNodeRecordingInfo[];
}
export declare class KalturaLiveEntryServerNode extends KalturaEntryServerNode {
streams: KalturaLiveStreamParams[];
recordingInfo: KalturaLiveEntryServerNodeRecordingInfo[];
constructor(data?: KalturaLiveEntryServerNodeArgs);
protected _getMetadata(): KalturaObjectMetadata;
}