Show / Hide Table of Contents

Class AnomalyDetectResult

Results of the detect anomalies call.

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

Properties

DetectionResults

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

A list to hold anomaly points grouped by timestamp/row.

Remarks

Required

In this article
Back to top