import { AlarmCondition } from './AlarmCondition'; import { AlarmStatus } from './AlarmStatus'; import { AlarmType } from './AlarmType'; export declare class AlarmUpdate { id?: number | undefined; name?: string | undefined; active: boolean; message?: string | undefined; messageOff?: string | undefined; number?: number | undefined; type?: AlarmType | undefined; status?: AlarmStatus | undefined; cause?: string | undefined; reaction?: string | undefined; correction?: string | undefined; createDateTime: number; updatedDateTime: number; conditions: AlarmCondition[]; constructor(id?: number | undefined, name?: string | undefined, active?: boolean, message?: string | undefined, messageOff?: string | undefined, number?: number | undefined, type?: AlarmType | undefined, status?: AlarmStatus | undefined, cause?: string | undefined, reaction?: string | undefined, correction?: string | undefined, createDateTime?: number, updatedDateTime?: number, conditions?: AlarmCondition[]); }