Search Results for

    Show / Hide Table of Contents

    Class LookupMxRecordsResults

    LookupMxRecordsResults

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

    Constructors

    View Source

    LookupMxRecordsResults()

    Initializes a new instance of the LookupMxRecordsResults class.

    Declaration
    [JsonConstructor]
    protected LookupMxRecordsResults()
    View Source

    LookupMxRecordsResults(List<DNSLookupResult>, List<string>, List<string>)

    Initializes a new instance of the LookupMxRecordsResults class.

    Declaration
    public LookupMxRecordsResults(List<DNSLookupResult> records = null, List<string> errors = null, List<string> warnings = null)
    Parameters
    Type Name Description
    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

    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

    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.