Show / Hide Table of Contents

Class DetectedDocumentType

The detected document type.

Inheritance
object
DetectedDocumentType
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 DetectedDocumentType

Properties

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score between 0 and 1.

Remarks

Required

DocumentType

Declaration
[Required(ErrorMessage = "DocumentType is required.")]
[JsonProperty(PropertyName = "documentType")]
public string DocumentType { get; set; }
Property Value
Type Description
string

The document type.

Remarks

Required

In this article
Back to top