Search Results for

    Show / Hide Table of Contents

    Class LookupDkimDomainResults

    LookupDkimDomainResults

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

    Constructors

    View Source

    LookupDkimDomainResults()

    Initializes a new instance of the LookupDkimDomainResults class.

    Declaration
    [JsonConstructor]
    protected LookupDkimDomainResults()
    View Source

    LookupDkimDomainResults(bool, string, string, string, string, int, List<string>, List<string>, List<string>)

    Initializes a new instance of the LookupDkimDomainResults class.

    Declaration
    public LookupDkimDomainResults(bool valid = false, string queriedName = null, string selector = null, string record = null, string algorithm = null, int keyLength = 0, List<string> checkedNames = null, List<string> warnings = null, List<string> errors = null)
    Parameters
    Type Name Description
    bool valid

    valid (required).

    string queriedName

    queriedName.

    string selector

    selector.

    string record

    record.

    string algorithm

    algorithm.

    int keyLength

    keyLength.

    List<string> checkedNames

    checkedNames (required).

    List<string> warnings

    warnings (required).

    List<string> errors

    errors (required).

    Properties

    View Source

    Algorithm

    Gets or Sets Algorithm

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

    CheckedNames

    Gets or Sets CheckedNames

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

    KeyLength

    Gets or Sets KeyLength

    Declaration
    [DataMember(Name = "keyLength", EmitDefaultValue = false)]
    public int KeyLength { get; set; }
    Property Value
    Type Description
    int
    View Source

    QueriedName

    Gets or Sets QueriedName

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

    Record

    Gets or Sets Record

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

    Selector

    Gets or Sets Selector

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