@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
16 lines (15 loc) • 527 B
TypeScript
import AbstractCondition from './AbstractCondition';
import EmailNotification from './EmailNotification';
/**
* @export
* @class EmailNotificationWithStreamConditions
*/
export declare class EmailNotificationWithStreamConditions extends EmailNotification {
/**
* @type {AbstractCondition}
* @memberof EmailNotificationWithStreamConditions
*/
conditions?: AbstractCondition;
constructor(obj?: Partial<EmailNotificationWithStreamConditions>);
}
export default EmailNotificationWithStreamConditions;