RawServerEvent
[ Interface ]
Version 1.12
export interface RawServerEvent {
domain: string;
name: string;
timeReceived: string;
payload?: RawServerMessage | RawServerAlarm | any;
payloadType?: TcHmi.Server.Events.Type;
localizedString?: string;
changeType?: ServerAlarmChangeType;
sessionId?: string;
}
Properties
Name | Type | Description |
---|---|---|
domain | Indicates the domain / extension that triggered the event. | |
name | The name of the event | |
timeReceived | The time at which the event was triggered | |
Payload [Optional] | Value that was transferred as payload | |
payloadType [Optional] | Ensures that instances of this interface that have this property defined, have always set the type Payload. | |
localizedString [Optional] | A localized message | |
changeType [Optional] | The type of change in the alarm. |
Available from version 1.12 |