C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ExceedanceProbability.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Metrics
5{
8 public partial class ExceedanceProbability : APIType, IMetricsResponse<ExceedanceProbability.Context>
9 {
12 [DataMember(Order = 2)]
13 public Context context { get; set; }
14
16 [DataMember(Order = 3)]
17 public double probability { get; set; }
18
22 {
23 probability = Double.NaN;
24 }
25 }
26}
The context of a tail metrics request, indicating what parameters were used in the simulation that pr...
ExceedanceProbability()
Construct ExceedanceProbability object with all values initialized to double.NaN.
Context context
The context of a tail metrics request, indicating what parameters were used in the simulation that pr...