Show / Hide Table of Contents

Class GeneralProcessorConfig

The configuration of a general processor.

Inheritance
object
ProcessorConfig
GeneralProcessorConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AidocumentService.Models
Assembly: OCI.DotNetSDK.Aidocument.dll
Syntax
public class GeneralProcessorConfig : ProcessorConfig

Properties

DocumentType

Declaration
[JsonProperty(PropertyName = "documentType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DocumentType? DocumentType { get; set; }
Property Value
Type Description
DocumentType?

The document type.

Features

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

The types of document analysis requested.

Remarks

Required

IsZipOutputEnabled

Declaration
[JsonProperty(PropertyName = "isZipOutputEnabled")]
public bool? IsZipOutputEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not to generate a ZIP file containing the results.

Language

Declaration
[JsonProperty(PropertyName = "language")]
public string Language { get; set; }
Property Value
Type Description
string

The document language, abbreviated according to the BCP 47 Language-Tag syntax.

In this article
Back to top