Show / Hide Table of Contents

Class DataItem

Simple object representing signal values at a certain point in time.

Inheritance
object
DataItem
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top