kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
11 lines (10 loc) • 522 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaDeliveryProfileHttp, KalturaDeliveryProfileHttpArgs } from './KalturaDeliveryProfileHttp';
export interface KalturaDeliveryProfileGenericHttpArgs extends KalturaDeliveryProfileHttpArgs {
pattern?: string;
}
export declare class KalturaDeliveryProfileGenericHttp extends KalturaDeliveryProfileHttp {
pattern: string;
constructor(data?: KalturaDeliveryProfileGenericHttpArgs);
protected _getMetadata(): KalturaObjectMetadata;
}