Search Results for

    Show / Hide Table of Contents

    Class CheckDomainMonitorResults

    One-shot public domain monitor check results

    Inheritance
    object
    CheckDomainMonitorResults
    Implements
    IValidatableObject
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "CheckDomainMonitorResults")]
    public class CheckDomainMonitorResults : IValidatableObject

    Constructors

    View Source

    CheckDomainMonitorResults()

    Initializes a new instance of the CheckDomainMonitorResults class.

    Declaration
    [JsonConstructor]
    protected CheckDomainMonitorResults()
    View Source

    CheckDomainMonitorResults(string, StatusEnum, int, int, int, int, bool, bool, bool, bool, List<string>, string)

    Initializes a new instance of the CheckDomainMonitorResults class.

    Declaration
    public CheckDomainMonitorResults(string domain = null, CheckDomainMonitorResults.StatusEnum status = (CheckDomainMonitorResults.StatusEnum)0, int healthScore = 0, int totalChecks = 0, int passingChecks = 0, int failingChecks = 0, bool spfOk = false, bool dmarcOk = false, bool dmarcEnforced = false, bool mxOk = false, List<string> insights = null, string errorMessage = null)
    Parameters
    Type Name Description
    string domain

    domain (required).

    CheckDomainMonitorResults.StatusEnum status

    status (required).

    int healthScore

    healthScore (required).

    int totalChecks

    totalChecks (required).

    int passingChecks

    passingChecks (required).

    int failingChecks

    failingChecks (required).

    bool spfOk

    spfOk (required).

    bool dmarcOk

    dmarcOk (required).

    bool dmarcEnforced

    dmarcEnforced (required).

    bool mxOk

    mxOk (required).

    List<string> insights

    insights (required).

    string errorMessage

    errorMessage.

    Properties

    View Source

    DmarcEnforced

    Gets or Sets DmarcEnforced

    Declaration
    [DataMember(Name = "dmarcEnforced", IsRequired = true, EmitDefaultValue = true)]
    public bool DmarcEnforced { get; set; }
    Property Value
    Type Description
    bool
    View Source

    DmarcOk

    Gets or Sets DmarcOk

    Declaration
    [DataMember(Name = "dmarcOk", IsRequired = true, EmitDefaultValue = true)]
    public bool DmarcOk { get; set; }
    Property Value
    Type Description
    bool
    View Source

    Domain

    Gets or Sets Domain

    Declaration
    [DataMember(Name = "domain", IsRequired = true, EmitDefaultValue = true)]
    public string Domain { get; set; }
    Property Value
    Type Description
    string
    View Source

    ErrorMessage

    Gets or Sets ErrorMessage

    Declaration
    [DataMember(Name = "errorMessage", EmitDefaultValue = true)]
    public string ErrorMessage { get; set; }
    Property Value
    Type Description
    string
    View Source

    FailingChecks

    Gets or Sets FailingChecks

    Declaration
    [DataMember(Name = "failingChecks", IsRequired = true, EmitDefaultValue = true)]
    public int FailingChecks { get; set; }
    Property Value
    Type Description
    int
    View Source

    HealthScore

    Gets or Sets HealthScore

    Declaration
    [DataMember(Name = "healthScore", IsRequired = true, EmitDefaultValue = true)]
    public int HealthScore { get; set; }
    Property Value
    Type Description
    int
    View Source

    Insights

    Gets or Sets Insights

    Declaration
    [DataMember(Name = "insights", IsRequired = true, EmitDefaultValue = true)]
    public List<string> Insights { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    MxOk

    Gets or Sets MxOk

    Declaration
    [DataMember(Name = "mxOk", IsRequired = true, EmitDefaultValue = true)]
    public bool MxOk { get; set; }
    Property Value
    Type Description
    bool
    View Source

    PassingChecks

    Gets or Sets PassingChecks

    Declaration
    [DataMember(Name = "passingChecks", IsRequired = true, EmitDefaultValue = true)]
    public int PassingChecks { get; set; }
    Property Value
    Type Description
    int
    View Source

    SpfOk

    Gets or Sets SpfOk

    Declaration
    [DataMember(Name = "spfOk", IsRequired = true, EmitDefaultValue = true)]
    public bool SpfOk { get; set; }
    Property Value
    Type Description
    bool
    View Source

    Status

    Gets or Sets Status

    Declaration
    [DataMember(Name = "status", IsRequired = true, EmitDefaultValue = true)]
    public CheckDomainMonitorResults.StatusEnum Status { get; set; }
    Property Value
    Type Description
    CheckDomainMonitorResults.StatusEnum
    View Source

    TotalChecks

    Gets or Sets TotalChecks

    Declaration
    [DataMember(Name = "totalChecks", IsRequired = true, EmitDefaultValue = true)]
    public int TotalChecks { get; set; }
    Property Value
    Type Description
    int

    Methods

    View Source

    ToJson()

    Returns the JSON string presentation of the object

    Declaration
    public virtual string ToJson()
    Returns
    Type Description
    string

    JSON string presentation of the object

    View Source

    ToString()

    Returns the string presentation of the object

    Declaration
    public override string ToString()
    Returns
    Type Description
    string

    String presentation of the object

    Overrides
    object.ToString()

    Implements

    IValidatableObject
    • View Source
    In this article
    Back to top See MailSlurp website for more information.