C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ExceedanceProbability.Context.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Metrics
5{
8 public partial class ExceedanceProbability
9 {
12 public class Context : Metrics.Context
13 {
15 [DataMember(Order = 1)]
16 public double threshold { get; set; }
17
19 [DataMember(Order = 2)]
20 public string threshold_currency { get; set; }
21
23 [DataMember(Order = 3)]
24 public bool inclusive_threshold { get; set; }
25
28 [DataMember(Order = 4)]
29 public bool threshold_includes_participation { get; set; }
30
32 public Context()
33 {
34 threshold = Double.NaN;
35 }
36 }
37 }
38}
The context of a tail metrics request, indicating what parameters were used in the simulation that pr...
Context()
Construct a new TailMetrics Context object.
bool threshold_includes_participation
Whether or not participation have been included in threshold values.
bool inclusive_threshold
Whether the threshold value is inclusive or not.
string threshold_currency
The currency of the threshold parameter.
The structure returned when requesting Exceedance Probability for a view.