C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
Distribution.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
6
7// ReSharper disable once CheckNamespace (Type is common enough to be on root namespace)
8namespace AnalyzeRe
9{
12 {
13 #region APIResource Interface Members
15 public static readonly string CLASS_COLLECTION_NAME = "distributions";
18 public override string collection_name => CLASS_COLLECTION_NAME;
19 #endregion APIResource Interface Members
20
21 #region Public Properties
28 [DataMember(Order = 12)]
29 [GreaterThan(0)]
30 public double? modulo { get; set; }
31
33 [DataMember(Order = 30)]
35 public double? min_val { get; set; }
36
38 [DataMember(Order = 31)]
40 public double? mean_val { get; set; }
41
43 [DataMember(Order = 32)]
45 public double? max_val { get; set; }
46 #endregion Public Properties
47 }
48}
Describes a collection of resources which can be listed.
Stored resource that is polymorphic (has more than one sub-type).
Specifies that a property is generated by the server and should not be specified on the client side d...
Abstract representation of a distribution, used for parametric loss sets.
double? modulo
Sets a maximum value for the distribution. Any values greater than or equal to this will be wrapped b...
double? max_val
The server calculated maximum value of this distribution (if available)
override string collection_name
The collection endpoint at which resources of this type reside on the server.
double? mean_val
The server calculated mean value of this distribution (if available)
double? min_val
The server calculated minimum value of this distribution (if available)
static readonly string CLASS_COLLECTION_NAME
The collection endpoint at which resources of this type reside on the server.
A distribution of values, used for parametric loss sets.