C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
WindowMetrics.Context.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Metrics
5{
6 public partial class WindowMetrics
7 {
10 public class Context : Metrics.Context
11 {
13 [DataMember(Order = 2)]
14 public double min_probability { get; set; } = Double.NaN;
15
17 [DataMember(Order = 3)]
18 public double max_probability { get; set; } = Double.NaN;
19
21 [DataMember(Order = 4)]
22 public string currency { get; set; }
23
27 [DataMember(Order = 5)]
28 public bool apply_participation { get; set; }
29 }
30 }
31}
The context of a tail metrics request, indicating what parameters were used in the simulation that pr...
bool apply_participation
Whether or not participation was applied to the results. If this is false, then the metrics returned ...
string currency
The currency of any monetary amounts in the context or results.
double max_probability
The probability determining where the window distribution ends.
double min_probability
The probability determining where the window distribution begins.
The structure returned when requesting Window Metrics for a view, containing the core window distribu...