C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
RecordTypeAnyOfFilter.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<RecordType> values { get; set; }
17 #endregion Public Properties
18
21 {
22 values = new List<RecordType>();
23 }
24 }
25}
A predicate that determines whether a loss should be included in the perspective or not.
Definition LossFilter.cs:11
A filter consisting of an attribute and a list of accepted values for that attribute.
RecordTypeAnyOfFilter()
Construct a new RecordTypeAnyOfFilter with an empty values list.
List< RecordType > values
The Record Type values.