Show / Hide Table of Contents

Class Table

The table extracted from a document.

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

Properties

BodyRows

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

The body rows.

Remarks

Required

BoundingPolygon

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

Required

ColumnCount

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

The number of columns.

Remarks

Required

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

FooterRows

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

the footer rows.

Remarks

Required

HeaderRows

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

The header rows.

Remarks

Required

RowCount

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

The number of rows.

Remarks

Required

In this article
Back to top