Show / Hide Table of Contents

Class EmbeddedInputDetails

The request body when byte data is provided 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
InputDetails
EmbeddedInputDetails
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 EmbeddedInputDetails : InputDetails

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
[Required(ErrorMessage = "ContentType is required.")]
[JsonProperty(PropertyName = "contentType")]
[JsonConverter(typeof(StringEnumConverter))]
public EmbeddedInputDetails.ContentTypeEnum? ContentType { get; set; }
Property Value
Type Description
EmbeddedInputDetails.ContentTypeEnum?
Remarks

Required

In this article
Back to top