kaltura-node-typescript-client
Version:
Kaltura Node Typescript client
12 lines (11 loc) • 636 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaKeyValue } from './KalturaKeyValue';
import { KalturaEventNotificationScope, KalturaEventNotificationScopeArgs } from './KalturaEventNotificationScope';
export interface KalturaEventNotificationDispatchScopeArgs extends KalturaEventNotificationScopeArgs {
dynamicValues?: KalturaKeyValue[];
}
export declare class KalturaEventNotificationDispatchScope extends KalturaEventNotificationScope {
dynamicValues: KalturaKeyValue[];
constructor(data?: KalturaEventNotificationDispatchScopeArgs);
protected _getMetadata(): KalturaObjectMetadata;
}