Show / Hide Table of Contents

Class EmbeddedDetectAnomaliesRequest

The request body when the user selects to provide byte data in detect call which is Base64 encoded. The default type of the data is CSV and can be JSON by setting the 'contentType'.

Inheritance
object
DetectAnomaliesDetails
EmbeddedDetectAnomaliesRequest
Inherited Members
DetectAnomaliesDetails.ModelId
DetectAnomaliesDetails.Sensitivity
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 EmbeddedDetectAnomaliesRequest : DetectAnomaliesDetails

Properties

Content

Declaration
[Required(ErrorMessage = "Content is required.")]
[JsonProperty(PropertyName = "content")]
public byte[] Content { get; set; }
Property Value
Type Description
byte[]
Remarks

Required

ContentType

Declaration
[JsonProperty(PropertyName = "contentType")]
[JsonConverter(typeof(StringEnumConverter))]
public EmbeddedDetectAnomaliesRequest.ContentTypeEnum? ContentType { get; set; }
Property Value
Type Description
EmbeddedDetectAnomaliesRequest.ContentTypeEnum?
In this article
Back to top