C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
TreatyLossSet.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
5
6namespace AnalyzeRe.LossSets
7{
9 [Obsolete("This is a legacy class, please just use ELTLossSet instead.")]
11 {
12 #region Public Properties
14 [DataMember(Order = 30)]
16
18 [DataMember(Order = 31)]
19 [NotNull]
20 public Treaty treaty { get; set; }
21 #endregion Public Properties
22
24 [Obsolete("This is part of a legacy class, please just use ELTLossSet instead.")]
25 public class Treaty : APIType
26 {
28 [DataMember(Order = 2)]
29 [NotNull]
30 public string id { get; set; }
31
33 [DataMember(Order = 3)]
34 public string description { get; set; }
35 }
36 }
37}
Base class used by all types and resources.
Definition APIType.cs:8
Representation of a single loss set with an associated event loss table.
Definition ELTLossSet.cs:10
Custom TreatyLossSet treaty reference type.
string description
The description of this treaty.
Representation of a TreatyLossSet.
IReference< VendorTreatyAnalysis > analysis
A reference to the analysis that resulted in this loss set.
Treaty treaty
A reference to the treaty associated with this TreatyLossSet.
Base interface for all reference entities.