Class EmailAuditSpellingIssue
A single spelling or content-quality issue discovered during email audit checks
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "EmailAuditSpellingIssue")]
public class EmailAuditSpellingIssue : IValidatableObject
Constructors
View SourceEmailAuditSpellingIssue()
Initializes a new instance of the EmailAuditSpellingIssue class.
Declaration
[JsonConstructor]
protected EmailAuditSpellingIssue()
EmailAuditSpellingIssue(string, string, SeverityEnum?, string)
Initializes a new instance of the EmailAuditSpellingIssue class.
Declaration
public EmailAuditSpellingIssue(string group = null, string suggestion = null, EmailAuditSpellingIssue.SeverityEnum? severity = null, string message = null)
Parameters
| Type | Name | Description |
|---|---|---|
| string | group | group. |
| string | suggestion | suggestion. |
| EmailAuditSpellingIssue.SeverityEnum? | severity | severity. |
| string | message | message (required). |
Properties
View SourceGroup
Gets or Sets Group
Declaration
[DataMember(Name = "group", EmitDefaultValue = true)]
public string Group { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Message
Gets or Sets Message
Declaration
[DataMember(Name = "message", IsRequired = true, EmitDefaultValue = true)]
public string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Severity
Gets or Sets Severity
Declaration
[DataMember(Name = "severity", EmitDefaultValue = true)]
public EmailAuditSpellingIssue.SeverityEnum? Severity { get; set; }
Property Value
| Type | Description |
|---|---|
| EmailAuditSpellingIssue.SeverityEnum? |
Suggestion
Gets or Sets Suggestion
Declaration
[DataMember(Name = "suggestion", EmitDefaultValue = true)]
public string Suggestion { get; set; }
Property Value
| Type | Description |
|---|---|
| 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 |