Search Results for

    Show / Hide Table of Contents

    Class LookupPtrResults

    LookupPtrResults

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

    Constructors

    View Source

    LookupPtrResults()

    Initializes a new instance of the LookupPtrResults class.

    Declaration
    [JsonConstructor]
    protected LookupPtrResults()
    View Source

    LookupPtrResults(string, List<string>, bool, List<string>, List<string>, List<string>, List<string>)

    Initializes a new instance of the LookupPtrResults class.

    Declaration
    public LookupPtrResults(string ip = null, List<string> ptrHostnames = null, bool forwardConfirmed = false, List<string> forwardARecords = null, List<string> forwardAaaaRecords = null, List<string> warnings = null, List<string> errors = null)
    Parameters
    Type Name Description
    string ip

    ip (required).

    List<string> ptrHostnames

    ptrHostnames (required).

    bool forwardConfirmed

    forwardConfirmed (required).

    List<string> forwardARecords

    forwardARecords (required).

    List<string> forwardAaaaRecords

    forwardAaaaRecords (required).

    List<string> warnings

    warnings (required).

    List<string> errors

    errors (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

    ForwardARecords

    Gets or Sets ForwardARecords

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

    ForwardAaaaRecords

    Gets or Sets ForwardAaaaRecords

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

    ForwardConfirmed

    Gets or Sets ForwardConfirmed

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

    Ip

    Gets or Sets Ip

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

    PtrHostnames

    Gets or Sets PtrHostnames

    Declaration
    [DataMember(Name = "ptrHostnames", IsRequired = true, EmitDefaultValue = true)]
    public List<string> PtrHostnames { get; set; }
    Property Value
    Type Description
    List<string>
    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.