C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ComparisonFilter.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
4{
7 public abstract class ComparisonFilter : AttributeFilter
8 {
9 #region Public Properties
11 [DataMember(Order = 15)]
12 public double value { get; set; }
13
16 [DataMember(Order = 16)]
17 public bool inclusive { get; set; }
18 #endregion Public Properties
19 }
20}
A filter that does a test on some attribute.
A filter where the specified attribute's value is compared to some predetermined value.
bool inclusive
Whether losses whose specified attribute exactly equals the value should also be included.
double value
The value to compare to.