Class EmailNotificationsSourceSettings
Email notification settings for a specific notification source
Inheritance
EmailNotificationsSourceSettings
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class EmailNotificationsSourceSettings
Properties
Receive all
When set to false, Exclusions property acts as a blacklist (all items are included by default).
When set to true, Exclusions property acts as a whitelist (no items are included by default).
Declaration
[JsonProperty("disableAll", Required = Required.Always)]
public bool DisableAll { get; set; }
Property Value
Exclusions from the default set by DisableAll property.
List of notification IDs which are excluded or included from the email, depending on the DisableAll property.
Declaration
[JsonProperty("exclusions", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> Exclusions { get; set; }
Property Value
Declaration
[JsonProperty("interval", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public EmailNotificationsInterval Interval { get; set; }
Property Value
Methods
Declaration
public static EmailNotificationsSourceSettings FromJson(string data)
Parameters
Returns