C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ELTLossSet.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
4
6{
10 {
11 #region Public Properties
13 [DataMember(Order = 21)]
14 [NotNull]
15 [NotEmpty]
16 public List<IReference<EventCatalog>> event_catalogs { get; set; }
17 #endregion Public Properties
18
21 public ELTLossSet()
22 {
23 event_catalogs = new List<IReference<EventCatalog>>();
24 }
25 }
26}
Representation of a single loss set with an associated event loss table.
Definition ELTLossSet.cs:10
ELTLossSet()
Construct a new LossSet with an empty event_catalogs list and initialize the data endpoint.
Definition ELTLossSet.cs:21
List< IReference< EventCatalog > > event_catalogs
A list of event catalog for which the loss set contains event losses.
Definition ELTLossSet.cs:16
Base for all loss sets for which pre-generated loss data must be uploaded.
Base for all conventional loss sets, which generate losses, have a server-generated loss profile,...