Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageTableTableCell (googly_document_ai v0.1.0)

Copy Markdown View Source

A cell representation inside the table.

Attributes

  • col_span (type: integer()) - How many columns this cell spans.
  • detected_languages (type: list(Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.t())) - A list of detected languages together with confidence.
  • layout (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout.t()) - Layout for TableCell.
  • row_span (type: integer()) - How many rows this cell spans.

Summary

Types

t()

@type t() ::
  %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageTableTableCell{
    col_span: integer() | nil,
    detected_languages:
      [
        Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageDetectedLanguage.t()
      ]
      | nil,
    layout:
      Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout.t()
      | nil,
    row_span: integer() | nil
  }