C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
RangeFilter.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
4{
8 {
9 #region Public Properties
11 [DataMember(Order = 15)]
12 public double begin_value { get; set; }
13
15 [DataMember(Order = 16)]
16 public bool begin_inclusive { get; set; }
17
19 [DataMember(Order = 17)]
20 public double end_value { get; set; }
21
23 [DataMember(Order = 18)]
24 public bool end_inclusive { get; set; }
25 #endregion Public Properties
26 }
27}
A filter that does a test on some attribute.
A filter where the specified attribute must have a numeric value that is within the specified range o...
Definition RangeFilter.cs:8
double begin_value
Values must be greater than this value to be included.
bool begin_inclusive
If true, values greater than OR equal to begin_value will be included.
bool end_inclusive
If true, values must be less than OR equal to end_value to be included.
double end_value
Values must be less than this value to be included.