@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
14 lines (13 loc) • 668 B
TypeScript
import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaEventNotificationEventObjectType } from './KalturaEventNotificationEventObjectType';
import { KalturaScope, KalturaScopeArgs } from './KalturaScope';
export interface KalturaEventNotificationScopeArgs extends KalturaScopeArgs {
objectId?: string;
scopeObjectType?: KalturaEventNotificationEventObjectType;
}
export declare class KalturaEventNotificationScope extends KalturaScope {
objectId: string;
scopeObjectType: KalturaEventNotificationEventObjectType;
constructor(data?: KalturaEventNotificationScopeArgs);
protected _getMetadata(): KalturaObjectMetadata;
}