Class AlertMessage
- Namespace
- Scaleout.Streaming.DigitalTwin.Core
- Assembly
- ScaleOut.Streaming.DigitalTwin.Core.dll
The AlertMessage objects contain all the data to send alerts to external services. This includes properties such as title, message and severity. Finally, alerts can include snapshots of instance properties along with the message.
public class AlertMessage
- Inheritance
-
AlertMessage
- Inherited Members
Properties
Message
A more descriptive message about the alert.
public string Message { get; set; }
Property Value
OptionalTwinInstanceProperties
Just like events, alerts can include snapshots of instance properties.
public Dictionary<string, string> OptionalTwinInstanceProperties { get; set; }
Property Value
Severity
Severity of the alert. Stored as a string since different providers use different severity names.
public string Severity { get; set; }
Property Value
Title
Title of the alert.
public string Title { get; set; }