Show / Hide Table of Contents

Class DetectionResultItem

An object to hold detection result for one timestamp/row.

Inheritance
object
DetectionResultItem
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 DetectionResultItem

Properties

Anomalies

Declaration
[Required(ErrorMessage = "Anomalies is required.")]
[JsonProperty(PropertyName = "anomalies")]
public List<Anomaly> Anomalies { get; set; }
Property Value
Type Description
List<Anomaly>

An array of anomalies associated with a given timestamp/row.

Remarks

Required

RowIndex

Declaration
[JsonProperty(PropertyName = "rowIndex")]
public int? RowIndex { get; set; }
Property Value
Type Description
int?

The index number to indicate where anomaly points are located among all rows when there are no timestamps provided.

Score

Declaration
[JsonProperty(PropertyName = "score")]
public double Score { get; set; }
Property Value
Type Description
double

A significant score across multiple signals at timestamp/row level

Timestamp

Declaration
[JsonProperty(PropertyName = "timestamp")]
public DateTime? Timestamp { get; set; }
Property Value
Type Description
DateTime?

The time stamp associated with a list of anomaly points, format defined by RFC3339.

In this article
Back to top