RawServerAlarm
[ Interface ]
export interface RawServerAlarm extends RawServerMessage {
id: number;
timeCleared: string | null;
timeConfirmed: string | null;
alarmState: AlarmState;
confirmationState: ConfirmationState;
}
This interface extends RawServerMessage.
Properties
Name | Type | Description |
---|---|---|
Id | The ID of the event | |
timeCleared | The time at which the alarm was confirmed by the trigger as no longer acute | |
timeConfirmed | The time at which the alarm was acknowledged by the user | |
alarmState | The current status of the alarm | |
confirmationState | The current confirmation status |
Available from version 1.12 |