Class SensorAlertsProfileRecipients
A List of recipients that will receive the alert
[DataContract]
public class SensorAlertsProfileRecipients
- Inheritance
-
SensorAlertsProfileRecipients
- Inherited Members
Properties
Emails
A list of emails that will receive information about the alert
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "emails")]
public List<string>? Emails { get; set; }
Property Value
HttpServerIds
A list of webhook endpoint IDs that will receive information about the alert
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "httpServerIds")]
public List<string>? HttpServerIds { get; set; }
Property Value
SmsNumbers
A list of SMS numbers that will receive information about the alert
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "smsNumbers")]
public List<string>? SmsNumbers { get; set; }