10 [CollectionName(
"SampleStatistics")]
11 [Index(
"Id",
"Start")]
12 [Index(
"Start",
"Id")]
15 private string objectId =
null;
16 private string id =
null;
17 private DateTime start = DateTime.MinValue;
18 private DateTime stop = DateTime.MinValue;
19 private string unit =
null;
20 private long count = 0;
21 private double? mean =
null;
22 private double? median =
null;
23 private double? variance =
null;
24 private double? stdDev =
null;
25 private double? min =
null;
26 private double? max =
null;
42 set => this.objectId = value;
51 set => this.id = value;
60 set => this.start = value;
66 [DefaultValueDateTimeMinValue]
70 set => this.stop = value;
80 set => this.count = value;
90 set => this.mean = value;
100 set => this.variance = value;
110 set => this.stdDev = value;
120 set => this.median = value;
130 set => this.min = value;
140 set => this.max = value;
146 [DefaultValueStringEmpty]
150 set => this.unit = value;
Represents collected statistical information from a small portion of time.
DateTime Stop
End of period.
double? Median
Standard deviation of values
DateTime Start
Start of period.
SampleStatistic()
Represents collected statistical information from a small portion of time.
long Count
Number of events
double? Min
Smallest value
double? Variance
Variance of values
string Unit
Unit of values
double? StdDev
Standard deviation of values
TypeNameSerialization
How the type name should be serialized.