Show / Hide Table of Contents

Class InputConfiguration

input documents configuration by default TXT files will be processed and this behaviour will not change in future after adding new types

Inheritance
object
InputConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class InputConfiguration

Properties

Configuration

Declaration
[JsonProperty(PropertyName = "configuration")]
public Dictionary<string, DocumentsConfiguration> Configuration { get; set; }
Property Value
Type Description
Dictionary<string, DocumentsConfiguration>

meta data about documents For CSV valid JSON format is {"CSV" :{inputColumn: "reviewDetails", rowId: "reviewId", copyColumnsToOutput: ["reviewId" "userId"] , delimiter: ","} Note: In future if new file types added we will update here in documentation about input file meta data

DocumentTypes

Declaration
[JsonProperty(PropertyName = "documentTypes")]
public List<string> DocumentTypes { get; set; }
Property Value
Type Description
List<string>

Type of documents supported for this release only TXT,CSV and one element is allowed here. for future scope this is marked as list

In this article
Back to top