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); } export default EmailNotificationWithStreamConditionsRequest;