UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

31 lines (30 loc) 909 B
import AbstractCondition from './AbstractCondition'; /** * @export * @class EmailNotificationWithStreamConditionsRequest */ export declare class EmailNotificationWithStreamConditionsRequest { /** * Notify when condition resolves after it was met * @type {boolean} * @memberof EmailNotificationWithStreamConditionsRequest */ resolve?: boolean; /** * @type {string[]} * @memberof EmailNotificationWithStreamConditionsRequest */ emails?: string[]; /** * @type {boolean} * @memberof EmailNotificationWithStreamConditionsRequest */ muted?: boolean; /** * @type {AbstractCondition} * @memberof EmailNotificationWithStreamConditionsRequest */ conditions?: AbstractCondition; constructor(obj?: Partial<EmailNotificationWithStreamConditionsRequest>); } export default EmailNotificationWithStreamConditionsRequest;