Class CheckEmailBodyResults
CheckEmailBodyResults
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "CheckEmailBodyResults")]
public class CheckEmailBodyResults : IEquatable<CheckEmailBodyResults>, IValidatableObject
Constructors
View SourceCheckEmailBodyResults()
Initializes a new instance of the CheckEmailBodyResults class.
Declaration
[JsonConstructor]
protected CheckEmailBodyResults()
CheckEmailBodyResults(bool, List<LinkIssue>, List<ImageIssue>, List<SpellingIssue>)
Initializes a new instance of the CheckEmailBodyResults class.
Declaration
public CheckEmailBodyResults(bool hasIssues = false, List<LinkIssue> linkIssues = null, List<ImageIssue> imageIssues = null, List<SpellingIssue> spellingIssues = null)
Parameters
Type | Name | Description |
---|---|---|
bool | hasIssues | hasIssues (required). |
System.Collections.Generic.List<T><LinkIssue> | linkIssues | linkIssues (required). |
System.Collections.Generic.List<T><ImageIssue> | imageIssues | imageIssues (required). |
System.Collections.Generic.List<T><SpellingIssue> | spellingIssues | spellingIssues (required). |
Properties
View SourceHasIssues
Gets or Sets HasIssues
Declaration
[DataMember(Name = "hasIssues", IsRequired = true, EmitDefaultValue = true)]
public bool HasIssues { get; set; }
Property Value
Type | Description |
---|---|
bool |
ImageIssues
Gets or Sets ImageIssues
Declaration
[DataMember(Name = "imageIssues", IsRequired = true, EmitDefaultValue = true)]
public List<ImageIssue> ImageIssues { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T><ImageIssue> |
LinkIssues
Gets or Sets LinkIssues
Declaration
[DataMember(Name = "linkIssues", IsRequired = true, EmitDefaultValue = true)]
public List<LinkIssue> LinkIssues { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T><LinkIssue> |
SpellingIssues
Gets or Sets SpellingIssues
Declaration
[DataMember(Name = "spellingIssues", IsRequired = true, EmitDefaultValue = true)]
public List<SpellingIssue> SpellingIssues { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T><SpellingIssue> |
Methods
View SourceEquals(CheckEmailBodyResults)
Returns true if CheckEmailBodyResults instances are equal
Declaration
public bool Equals(CheckEmailBodyResults input)
Parameters
Type | Name | Description |
---|---|---|
CheckEmailBodyResults | input | Instance of CheckEmailBodyResults to be compared |
Returns
Type | Description |
---|---|
bool | Boolean |
Equals(object)
Returns true if objects are equal
Declaration
public override bool Equals(object input)
Parameters
Type | Name | Description |
---|---|---|
object | input | Object to be compared |
Returns
Type | Description |
---|---|
bool | Boolean |
Overrides
View SourceGetHashCode()
Gets the hash code
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | Hash code |
Overrides
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 |
Overrides
Validate(ValidationContext)
To validate all properties of the instance
Declaration
public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
Parameters
Type | Name | Description |
---|---|---|
ValidationContext | validationContext | Validation context |
Returns
Type | Description |
---|---|
IEnumerable<ValidationResult> | Validation Result |