Search Results for

    Show / Hide Table of Contents

    Class LookupDmarcDomainResults

    LookupDmarcDomainResults

    Inheritance
    object
    LookupDmarcDomainResults
    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 = "LookupDmarcDomainResults")]
    public class LookupDmarcDomainResults : IValidatableObject

    Constructors

    View Source

    LookupDmarcDomainResults()

    Initializes a new instance of the LookupDmarcDomainResults class.

    Declaration
    [JsonConstructor]
    protected LookupDmarcDomainResults()
    View Source

    LookupDmarcDomainResults(bool, DNSLookupOptions, List<DNSLookupResult>, List<string>, List<string>)

    Initializes a new instance of the LookupDmarcDomainResults class.

    Declaration
    public LookupDmarcDomainResults(bool valid = false, DNSLookupOptions query = null, List<DNSLookupResult> records = null, List<string> errors = null, List<string> warnings = null)
    Parameters
    Type Name Description
    bool valid

    valid (required).

    DNSLookupOptions query

    query (required).

    List<DNSLookupResult> records

    records (required).

    List<string> errors

    errors (required).

    List<string> warnings

    warnings (required).

    Properties

    View Source

    Errors

    Gets or Sets Errors

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

    Query

    Gets or Sets Query

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

    Records

    Gets or Sets Records

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

    Valid

    Gets or Sets Valid

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

    Warnings

    Gets or Sets Warnings

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

    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.