Search Results for

    Show / Hide Table of Contents

    Class LookupMtaStsDomainResults

    LookupMtaStsDomainResults

    Inheritance
    object
    LookupMtaStsDomainResults
    Implements
    IEquatable<LookupMtaStsDomainResults>
    System.ComponentModel.DataAnnotations.IValidatableObject
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: mailslurp.Model
    Assembly: mailslurp.dll
    Syntax
    [DataContract(Name = "LookupMtaStsDomainResults")]
    public class LookupMtaStsDomainResults : IEquatable<LookupMtaStsDomainResults>, IValidatableObject

    Constructors

    View Source

    LookupMtaStsDomainResults()

    Initializes a new instance of the LookupMtaStsDomainResults class.

    Declaration
    [JsonConstructor]
    protected LookupMtaStsDomainResults()
    View Source

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

    Initializes a new instance of the LookupMtaStsDomainResults class.

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

    valid (required).

    DNSLookupOptions query

    query (required).

    System.Collections.Generic.List<T><DNSLookupResult> records

    records (required).

    string wellKnownQuery

    wellKnownQuery (required).

    bool wellKnownPresent

    wellKnownPresent (required).

    string wellKnownValue

    wellKnownValue (required).

    System.Collections.Generic.List<T><string> errors

    errors (required).

    System.Collections.Generic.List<T><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
    System.Collections.Generic.List<T><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
    System.Collections.Generic.List<T><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
    System.Collections.Generic.List<T><string>
    View Source

    WellKnownPresent

    Gets or Sets WellKnownPresent

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

    WellKnownQuery

    Gets or Sets WellKnownQuery

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

    WellKnownValue

    Gets or Sets WellKnownValue

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

    Methods

    View Source

    Equals(LookupMtaStsDomainResults)

    Returns true if LookupMtaStsDomainResults instances are equal

    Declaration
    public bool Equals(LookupMtaStsDomainResults input)
    Parameters
    Type Name Description
    LookupMtaStsDomainResults input

    Instance of LookupMtaStsDomainResults to be compared

    Returns
    Type Description
    bool

    Boolean

    View Source

    Equals(object)

    Returns true if objects are equal

    Declaration
    public override bool Equals(object input)
    Parameters
    Type Name Description
    object input

    Object to be compared

    Returns
    Type Description
    bool

    Boolean

    Overrides
    Object.Equals(Object)
    View Source

    GetHashCode()

    Gets the hash code

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    Hash code

    Overrides
    Object.GetHashCode()
    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()
    View Source

    Validate(ValidationContext)

    To validate all properties of the instance

    Declaration
    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    Parameters
    Type Name Description
    ValidationContext validationContext

    Validation context

    Returns
    Type Description
    IEnumerable<ValidationResult>

    Validation Result

    Implements

    System.IEquatable<T>
    System.ComponentModel.DataAnnotations.IValidatableObject
    • View Source
    In This Article
    Back to top See MailSlurp website for more information.