C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
IMetricsResponse.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
3namespace AnalyzeRe.Metrics
4{
7 public interface IMetricsResponse<out T> : IAPIType where T : Context
8 {
11 [DataMember(Order = 9)]
12 T context { get; }
13 }
14}
The common components of the context returned from any metrics request, indicating what parameters we...
Definition Context.cs:10
Interface shared by all object types and resources returned by the Analyze Re server.
Definition IAPIType.cs:6
A shared interface for metrics responses that dictate their metrics be accompanied by some context ob...
T context
The context of a metrics request, indicating what parameters were used in the simulation that produce...