Class ValidateEmailAddressListOptions
Options for validating a list of email addresses
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "ValidateEmailAddressListOptions")]
public class ValidateEmailAddressListOptions : IValidatableObject
Constructors
View SourceValidateEmailAddressListOptions()
Initializes a new instance of the ValidateEmailAddressListOptions class.
Declaration
[JsonConstructor]
protected ValidateEmailAddressListOptions()
ValidateEmailAddressListOptions(List<string>, bool?)
Initializes a new instance of the ValidateEmailAddressListOptions class.
Declaration
public ValidateEmailAddressListOptions(List<string> emailAddressList = null, bool? ignoreOldResults = null)
Parameters
| Type | Name | Description |
|---|---|---|
| List<string> | emailAddressList | emailAddressList (required). |
| bool? | ignoreOldResults | ignoreOldResults. |
Properties
View SourceEmailAddressList
Gets or Sets EmailAddressList
Declaration
[DataMember(Name = "emailAddressList", IsRequired = true, EmitDefaultValue = true)]
public List<string> EmailAddressList { get; set; }
Property Value
| Type | Description |
|---|---|
| List<string> |
IgnoreOldResults
Gets or Sets IgnoreOldResults
Declaration
[DataMember(Name = "ignoreOldResults", EmitDefaultValue = true)]
public bool? IgnoreOldResults { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? |
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 |