// (C) 2007-2019 GoodData Corporation import { ISchemaFilterContext } from "./SchemaFilterContext"; export interface ISchemaKpiAlert { author: string; kpiId: string; dashboardId: string; threshold: number; isTriggered: boolean; whenTriggered: "underThreshold" | "aboveThreshold"; identifier?: string; filterContext?: ISchemaFilterContext; }