Class MetricReading
Represents a single measurement (reading) of the service metric.
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities
Assembly: Nevatech.Vsb.Repository.dll
Syntax
[DataContract(Namespace = "http://schemas.nevatech.com/sentinet/2011/02", Name = "Reading")]
public class MetricReading
Constructors
MetricReading()
Declaration
public MetricReading()
Properties
ServiceAgreementMetricId
Gets or sets identifier of the service metric that was measured.
Declaration
[DataMember(Name = "MetricId")]
public int ServiceAgreementMetricId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
StartDateTime
Gets or sets the date and time when metric value was read. The time is reported in the time zone of the corresponding service agreement.
Declaration
[DataMember(Name = "T")]
public DateTime StartDateTime { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
Value
Gets or sets the measured metric value.
Declaration
[DataMember(Name = "V")]
public decimal Value { get; set; }
Property Value
| Type | Description |
|---|---|
| decimal |