C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
Layer_WithLossSets.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
4
5namespace AnalyzeRe.Layers
6{
10 {
11 #region Public Properties
13 [DataMember(Order = 12)]
15 public List<IReference<LossSet>> loss_sets { get; set; }
16
19 [DataMember(Order = 12)]
20 public Policy policy { get; set; }
21 #endregion Public Properties
22
25 {
26 loss_sets = new List<IReference<LossSet>>();
27 }
28 }
29}
Indicates that the property, if left null, will be given a default value by the server corresponding ...
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...
Definition Layer.cs:12
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...
List< IReference< LossSet > > loss_sets
The list of LossSet references that is associated with the specific layer.
Layer_WithLossSets()
Base constructor which initializes the loss_sets collection to an empty list.
Policy policy
The Policy that overrides the default layer behaviour for forwarding and transforming loss records.
Layer Policy is the rule on RecordType that determines how occurrences belonging to a particular Reco...
Definition Policy.cs:17
Base interface for all reference entities.
Abstract representation of a layer with terms.