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

number

The ID of the event

timeCleared

string, null

The time at which the alarm was confirmed by the trigger as no longer acute

timeConfirmed

string, null

The time at which the alarm was acknowledged by the user

alarmState

AlarmState

The current status of the alarm

confirmationState

ConfirmationState

The current confirmation status

RawServerAlarm 1:

Available from version 1.12