Class UpdateSmtpAccessOptions
Edit access details for inbox using SMTP
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "UpdateSmtpAccessOptions")]
public class UpdateSmtpAccessOptions : IValidatableObject
Constructors
View SourceUpdateSmtpAccessOptions(string, string)
Initializes a new instance of the UpdateSmtpAccessOptions class.
Declaration
public UpdateSmtpAccessOptions(string smtpUsername = null, string smtpPassword = null)
Parameters
Type | Name | Description |
---|---|---|
string | smtpUsername | SMTP username for login. |
string | smtpPassword | SMTP password for login. |
Properties
View SourceSmtpPassword
SMTP password for login
Declaration
[DataMember(Name = "smtpPassword", EmitDefaultValue = true)]
public string SmtpPassword { get; set; }
Property Value
Type | Description |
---|---|
string | SMTP password for login |
SmtpUsername
SMTP username for login
Declaration
[DataMember(Name = "smtpUsername", EmitDefaultValue = true)]
public string SmtpUsername { get; set; }
Property Value
Type | Description |
---|---|
string | SMTP username for login |
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 |