Class LookupDkimDomainResults
LookupDkimDomainResults
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "LookupDkimDomainResults")]
public class LookupDkimDomainResults : IValidatableObject
Constructors
View SourceLookupDkimDomainResults()
Initializes a new instance of the LookupDkimDomainResults class.
Declaration
[JsonConstructor]
protected LookupDkimDomainResults()
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 SourceAlgorithm
Gets or Sets Algorithm
Declaration
[DataMember(Name = "algorithm", EmitDefaultValue = false)]
public string Algorithm { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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> |
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> |
KeyLength
Gets or Sets KeyLength
Declaration
[DataMember(Name = "keyLength", EmitDefaultValue = false)]
public int KeyLength { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
QueriedName
Gets or Sets QueriedName
Declaration
[DataMember(Name = "queriedName", EmitDefaultValue = false)]
public string QueriedName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Record
Gets or Sets Record
Declaration
[DataMember(Name = "record", EmitDefaultValue = false)]
public string Record { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Selector
Gets or Sets Selector
Declaration
[DataMember(Name = "selector", EmitDefaultValue = false)]
public string Selector { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Valid
Gets or Sets Valid
Declaration
[DataMember(Name = "valid", IsRequired = true, EmitDefaultValue = true)]
public bool Valid { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
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 SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
| Type | Description |
|---|---|
| string | JSON string presentation of the object |
ToString()
Returns the string presentation of the object
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| string | String presentation of the object |