C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
YLTLossSet.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Runtime.Serialization;
5
6namespace AnalyzeRe.LossSets
7{
11 {
12 #region Public Properties
15 [DataMember(Order = 20)]
16 public DateTime start_date { get; set; }
17
19 [DataMember(Order = 21)]
20 [ServerHasDefaultEmptyObject(typeof(Dictionary<string, string>))]
21 public Dictionary<string, string> attributes { get; set; }
22
24 [DataMember(Order = 22)]
25 public int trial_count { get; set; }
26
31 [DataMember(Order = 23)]
34 #endregion Public Properties
35
37 public YLTLossSet()
38 {
39 attributes = new Dictionary<string, string>();
40 }
41 }
42}
Indicates that the property, if left null, will be given a default value by the server corresponding ...
Indicates that the property, if left null, will have a default value generated and filled in by the s...
Base for all loss sets for which pre-generated loss data must be uploaded.
Representation of a loss set with an associated simulated yearly losses table.
Definition YLTLossSet.cs:11
ReinstatementsDataType? reinstatements_data_type
Dictates whether any reinstatement information associated with the loss set should be interpreted as ...
Definition YLTLossSet.cs:33
YLTLossSet()
Construct a new YLTLossSet with an empty attributes list.
Definition YLTLossSet.cs:37
Dictionary< string, string > attributes
Loss attributes generated by this LossSet.
Definition YLTLossSet.cs:21
DateTime start_date
The date and time associated with every loss generated by this loss set.t.
Definition YLTLossSet.cs:16
int trial_count
Number of trials in these simulated losses.
Definition YLTLossSet.cs:25
An interface for pre-simulated loss sets some data associated with them, some hard-coded seasonality ...
ReinstatementsDataType
Dictates how any reinstatement information associated with a loss set should be interpreted.