C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
DomainEntry.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
5{
7 public class DomainEntry : APIType
8 {
9 #region Public Properties
11 [DataMember(Order = 2)]
12 [NotNull]
13 public IReference<ILayer> layer { get; set; }
14
16 [DataMember(Order = 3)]
17 public double min { get; set; }
18
20 [DataMember(Order = 4)]
21 public double max { get; set; }
22
25 [DataMember(Order = 5)]
26 public bool allow_exclude { get; set; }
27 #endregion Public Properties
28 }
29}
Base class used by all types and resources.
Definition APIType.cs:8
A structure indicating the min/max share constraint for a layer.
Definition DomainEntry.cs:8
bool allow_exclude
Indicates whether the optimization results should consider scenarios where this layer has been exclud...
double min
The layer minimum share (usually between 0 and max).
IReference< ILayer > layer
The layer this domain min/max applies to.
double max
The layer maximum share (usually between min and 1).
Base interface for all reference entities.