Class InboxRulesetTestResult
Result of test of inbox ruleset
Implements
Inherited Members
Namespace: mailslurp.Model
Assembly: mailslurp.dll
Syntax
[DataContract(Name = "InboxRulesetTestResult")]
public class 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 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 |