Class InboxRulesetTestResult
Result of test of inbox ruleset
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "InboxRulesetTestResult")]
public class InboxRulesetTestResult : IEquatable<InboxRulesetTestResult>, IValidatableObject
Constructors
View SourceInboxRulesetTestResult()
Initializes a new instance of the InboxRulesetTestResult class.
Declaration
[JsonConstructor]
protected InboxRulesetTestResult()
InboxRulesetTestResult(Dictionary<string, bool>, bool)
Initializes a new instance of the InboxRulesetTestResult class.
Declaration
public InboxRulesetTestResult(Dictionary<string, bool> rulesetMatches = null, bool matches = false)
Parameters
Type | Name | Description |
---|---|---|
Dictionary<string, bool> | rulesetMatches | Map of inbox ruleset ID to boolean of if target matches (required). |
bool | matches | matches (required). |
Properties
View SourceMatches
Gets or Sets Matches
Declaration
[DataMember(Name = "matches", IsRequired = true, EmitDefaultValue = true)]
public bool Matches { get; set; }
Property Value
Type | Description |
---|---|
bool |
RulesetMatches
Map of inbox ruleset ID to boolean of if target matches
Declaration
[DataMember(Name = "rulesetMatches", IsRequired = true, EmitDefaultValue = true)]
public Dictionary<string, bool> RulesetMatches { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, bool> | Map of inbox ruleset ID to boolean of if target matches |
Methods
View SourceEquals(InboxRulesetTestResult)
Returns true if InboxRulesetTestResult instances are equal
Declaration
public bool Equals(InboxRulesetTestResult input)
Parameters
Type | Name | Description |
---|---|---|
InboxRulesetTestResult | input | Instance of InboxRulesetTestResult 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 |