C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
Generic.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 = 40)]
14 [ServerHasDefaultEmptyObject(typeof(List<Reinstatement>))]
15 public List<Reinstatement> reinstatements { get; set; }
16 #endregion Public Properties
17
19 public Generic()
20 {
21 reinstatements = new List<Reinstatement>();
22 }
23 }
24}
Indicates that the property, if left null, will be given a default value by the server corresponding ...
Representation of an Aggregate Catastrophe Excess of Loss layer.
Definition AggXL.cs:8
Representation of an Aggregate Catastrophe Excess of Loss layer with reinstatements.
Definition Generic.cs:10
List< Reinstatement > reinstatements
A list of reinstatement provisions applicable by this layer.
Definition Generic.cs:15
Generic()
Construct a new Generic Layer with an empty reinstatements list.
Definition Generic.cs:19
Abstract representation of a layer with terms.