Search Results for

    Show / Hide Table of Contents

    Class NameServerRecord

    Name Server Record

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

    Constructors

    View Source

    NameServerRecord()

    Initializes a new instance of the NameServerRecord class.

    Declaration
    [JsonConstructor]
    protected NameServerRecord()
    View Source

    NameServerRecord(string, string, string, string)

    Initializes a new instance of the NameServerRecord class.

    Declaration
    public NameServerRecord(string raw = null, string recordType = null, string priority = null, string value = null)
    Parameters
    Type Name Description
    string raw

    raw (required).

    string recordType

    recordType (required).

    string priority

    priority (required).

    string value

    value (required).

    Properties

    View Source

    Priority

    Gets or Sets Priority

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

    Raw

    Gets or Sets Raw

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

    RecordType

    Gets or Sets RecordType

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

    Value

    Gets or Sets Value

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