C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
LossSetProfile.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe.LossSets
5{
8 public class LossSetProfile : APIType
9 {
11 [DataMember(Order = 2)]
12 public double? avg_annual_loss { get; set; }
13
15 [DataMember(Order = 3)]
16 public double? min_loss { get; set; }
17
19 [DataMember(Order = 4)]
20 public double? max_loss { get; set; }
21
23 [DataMember(Order = 5)]
24 public string currency { get; set; }
25
27 [DataMember(Order = 6)]
28 public long? num_losses { get; set; }
29
31 [DataMember(Order = 7)]
32 public long? non_zero_losses { get; set; }
33
36 [DataMember(Order = 8)]
37 public Dictionary<string, List<object>> attributes { get; set; }
38 }
39}
Base class used by all types and resources.
Definition APIType.cs:8
A profile of this loss set, containing server generated meta data about its contents.
double? min_loss
The minimum loss in this loss set.
long? num_losses
The number of losses in this loss set.
double? max_loss
The maximum loss in this loss set.
Dictionary< string, List< object > > attributes
A list of attributes found in this loss set and the distinct values that exist for each attribute.
long? non_zero_losses
The number of non-zero losses in this loss set.
string currency
The currency of the loss metrics in this profile.
double? avg_annual_loss
The average annual loss in this loss set.