Class DataItem
Simple object representing signal values at a certain point in time.
Inherited Members
Namespace: Oci.AianomalydetectionService.Models
Assembly: OCI.DotNetSDK.Aianomalydetection.dll
Syntax
public class DataItem
Properties
Timestamp
Declaration
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | Nullable string representing timestamp. |
Values
Declaration
[Required(ErrorMessage = "Values is required.")]
[JsonProperty(PropertyName = "values")]
public List<double> Values { get; set; }
Property Value
Type | Description |
---|---|
List<double> | Array of double precision values. |
Remarks
Required