Show / Hide Table of Contents

Class Page

One page document analysis result.

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

Properties

DetectedDocumentTypes

Declaration
[JsonProperty(PropertyName = "detectedDocumentTypes")]
public List<DetectedDocumentType> DetectedDocumentTypes { get; set; }
Property Value
Type Description
List<DetectedDocumentType>

An array of detected document types.

DetectedLanguages

Declaration
[JsonProperty(PropertyName = "detectedLanguages")]
public List<DetectedLanguage> DetectedLanguages { get; set; }
Property Value
Type Description
List<DetectedLanguage>

An array of detected languages.

Dimensions

Declaration
[JsonProperty(PropertyName = "dimensions")]
public Dimensions Dimensions { get; set; }
Property Value
Type Description
Dimensions

DocumentFields

Declaration
[JsonProperty(PropertyName = "documentFields")]
public List<DocumentField> DocumentFields { get; set; }
Property Value
Type Description
List<DocumentField>

The form fields detected on the page.

Lines

Declaration
[JsonProperty(PropertyName = "lines")]
public List<Line> Lines { get; set; }
Property Value
Type Description
List<Line>

The lines of text detected on the page.

PageNumber

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

The document page number.

Remarks

Required

Tables

Declaration
[JsonProperty(PropertyName = "tables")]
public List<Table> Tables { get; set; }
Property Value
Type Description
List<Table>

The tables detected on the page.

Words

Declaration
[JsonProperty(PropertyName = "words")]
public List<Word> Words { get; set; }
Property Value
Type Description
List<Word>

The words detected on the page.

In this article
Back to top