C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
AnyOfFilter.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
4
6{
10 {
11 #region Public Properties
13 [DataMember(Order = 15)]
14 [NotNull]
15 [NotEmpty]
16 public List<object> values { get; set; }
17 #endregion Public Properties
18
20 public AnyOfFilter()
21 {
22 values = new List<object>();
23 }
24 }
25}
A filter consisting of an attribute and a list of accepted values for that attribute.
List< object > values
The accepted values for the attribute.
AnyOfFilter()
Construct a new AnyOfFilter with an empty values list.
A filter that does a test on some attribute.