C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
Filter.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
4
5namespace AnalyzeRe.Layers
6{
10 [APITypeAlias("FilterLayer")]
11 [NotSaveable]
13 {
14 #region Public Properties
22 [DataMember(Order = 20)]
23 public bool invert { get; set; }
24
27 [DataMember(Order = 21)]
29 public List<IReference<LossFilter>> filters { get; set; }
30 #endregion Public Properties
31
33 public Filter()
34 {
35 filters = new List<IReference<LossFilter>>();
36 }
37 }
38}
Indicates that the property, if left null, will be given a default value by the server corresponding ...
Filter is like a layer whose 'terms' are to filter events out of the loss sources....
Definition Filter.cs:13
Filter()
Construct a new Filter with an empty list of filters.
Definition Filter.cs:33
List< IReference< LossFilter > > filters
A list of filters, any of whose criteria must be met. (i.e. The filters are OR'd together).
Definition Filter.cs:29
bool invert
A Boolean flag determining how the filters are used. If invert is FALSE (default),...
Definition Filter.cs:23
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...
Base interface for all reference entities.