C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
CoMetrics.Context.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Metrics
5{
8 public partial class CoMetrics
9 {
13 {
18 [Obsolete("This property is ambiguous. Use the max_probability property instead.")]
19 public new double probability { get => max_probability; set => max_probability = value; }
20
22 [DataMember(Order = 20)]
24
26 [DataMember(Order = 21)]
27 public string component_filter { get; set; }
28
30 [DataMember(Order = 22)]
32
35 [DataMember(Order = 14)]
36 public DateTime? component_reporting_period_begin { get; set; }
37
40 [DataMember(Order = 15)]
41 public DateTime? component_reporting_period_end { get; set; }
42
44 [DataMember(Order = 23)]
45 public bool? include_primary_metrics { get; set; }
46 }
47 }
48}
The context of a co-metrics request, indicating what parameters were used in the simulation that prod...
new double probability
Obsolete: The CoMetrics object used to represent only the tail-co-metrics, but now more flexibly supp...
Perspective component_perspective
The perspective determining which component losses to return.
DateTime? component_reporting_period_begin
The reporting period starting DateTime (if it was set), which restricts component results to only inc...
string component_filter
The name of the filter when filtering component losses.
bool? include_primary_metrics
Whether primary metrics are included in the response.
DateTime? component_reporting_period_end
The reporting period ending DateTime (if it was set), which restricts component results to only inclu...
IReference< IAPIResourceView > component
The Component LayerView or PortfolioView that generated these metrics.
The structure returned when requesting Co-Metrics for a view.
The structure returned when requesting Tail Metrics for a view.
double max_probability
The probability determining where the window distribution ends.
The loss perspective determines what factors to include when computing a distribution.
Base interface for all reference entities.