Search Results for

    Show / Hide Table of Contents

    Class EmailNotificationsSourceSettings

    Email notification settings for a specific notification source

    Inheritance
    object
    EmailNotificationsSourceSettings
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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

    DisableAll

    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
    bool

    Exclusions

    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
    ICollection<string>

    Interval

    Interval.

    Declaration
    [JsonProperty("interval", Required = Required.Always)]
    [Required(AllowEmptyStrings = true)]
    [JsonConverter(typeof(StringEnumConverter))]
    public EmailNotificationsInterval Interval { get; set; }
    Property Value
    EmailNotificationsInterval

    Methods

    FromJson(string)

    Declaration
    public static EmailNotificationsSourceSettings FromJson(string data)
    Parameters
    string data

    Returns
    EmailNotificationsSourceSettings

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX