Search Results for

    Show / Hide Table of Contents

    Class DescribeMailServerDomainResult

    Name Server lookup result

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

    Constructors

    View Source

    DescribeMailServerDomainResult()

    Initializes a new instance of the DescribeMailServerDomainResult class.

    Declaration
    [JsonConstructor]
    protected DescribeMailServerDomainResult()
    View Source

    DescribeMailServerDomainResult(List<NameServerRecord>, string, string)

    Initializes a new instance of the DescribeMailServerDomainResult class.

    Declaration
    public DescribeMailServerDomainResult(List<NameServerRecord> mxRecords = null, string domain = null, string message = null)
    Parameters
    Type Name Description
    List<NameServerRecord> mxRecords

    mxRecords (required).

    string domain

    domain (required).

    string message

    message.

    Properties

    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

    Message

    Gets or Sets Message

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

    MxRecords

    Gets or Sets MxRecords

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

    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
    • Constructors
      • DescribeMailServerDomainResult()
      • DescribeMailServerDomainResult(List<NameServerRecord>, string, string)
    • Properties
      • Domain
      • Message
      • MxRecords
    • Methods
      • ToJson()
      • ToString()
    • Implements
    Back to top See MailSlurp website for more information.