Show / Hide Table of Contents

Class InlineInputDetails

This is the specialized JSON format that is accepted as training data, with an additional field for 'requestType'. This is a required field used deciding whether it is an inline request or contains embedded data.

Inheritance
object
InputDetails
InlineInputDetails
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 InlineInputDetails : InputDetails

Properties

Data

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

Array containing data.

Remarks

Required

SignalNames

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

List of signal names.

Remarks

Required

In this article
Back to top