kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
11 lines (10 loc) • 496 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaDeliveryProfile, KalturaDeliveryProfileArgs } from './KalturaDeliveryProfile';
export interface KalturaDeliveryProfileVodArgs extends KalturaDeliveryProfileArgs {
simuliveSupport?: boolean;
}
export declare class KalturaDeliveryProfileVod extends KalturaDeliveryProfile {
simuliveSupport: boolean;
constructor(data?: KalturaDeliveryProfileVodArgs);
protected _getMetadata(): KalturaObjectMetadata;
}