C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
TailMetrics.Context.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
4
5namespace AnalyzeRe.Metrics
6{
9 public partial class TailMetrics
10 {
14 {
24 [DataMember (Order = 6)]
25 public double probability
26 {
27 get => max_probability;
28 set
29 {
30 max_probability = value;
32 }
33 }
34 }
35 }
36}
The context of a tail metrics request, indicating what parameters were used in the simulation that pr...
double probability
The probability determining where the tail distribution begins. Note that this is equal to the Window...
The structure returned when requesting Tail Metrics for a view.
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...