C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
Context.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Metrics
5{
9 public class Context : APIType
10 {
13 [DataMember(Order = 10)]
14 public Perspective perspective { get; set; }
15
18 [DataMember(Order = 11)]
19 public string filter { get; set; }
20
26 [DataMember(Order = 12)]
28
31 [DataMember(Order = 13)]
32 public bool secondary_uncertainty { get; set; }
33
36 [DataMember(Order = 14)]
37 public DateTime? reporting_period_begin { get; set; }
38
41 [DataMember(Order = 15)]
42 public DateTime? reporting_period_end { get; set; }
43 }
44}
Base class used by all types and resources.
Definition APIType.cs:8
The common components of the context returned from any metrics request, indicating what parameters we...
Definition Context.cs:10
DateTime? reporting_period_begin
The reporting period starting DateTime (if it was set), which restricts results to only include losse...
Definition Context.cs:37
bool secondary_uncertainty
Whether or not to simulate using secondary uncertainty (if available). This is set to false only if s...
Definition Context.cs:32
Perspective perspective
The loss perspective determining which outputs are included in the loss distribution.
Definition Context.cs:14
APIResourceView.AggregationMethod aggregation_method
The aggregation method (AEP or OEP) used to compute this distribution. The default is AEP (Aggregate ...
Definition Context.cs:27
DateTime? reporting_period_end
The reporting period ending DateTime (if it was set), which restricts results to only include losses ...
Definition Context.cs:42
string filter
The name of the predefined filter used to determine which event losses are included in the resulting ...
Definition Context.cs:19
The loss perspective determines what factors to include when computing a distribution.
AggregationMethod
Specifies the method of aggregating event occurrences in a trial year for computing different types o...