class Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageTableTableCell

A cell representation inside the table.

Attributes

col_span[RW]

How many columns this cell spans. Corresponds to the JSON property `colSpan` @return [Fixnum]

detected_languages[RW]

A list of detected languages together with confidence. Corresponds to the JSON property `detectedLanguages` @return [Array<Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageDetectedLanguage>]

layout[RW]

Visual element describing a layout unit on a page. Corresponds to the JSON property `layout` @return [Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageLayout]

row_span[RW]

How many rows this cell spans. Corresponds to the JSON property `rowSpan` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/documentai_v1/classes.rb, line 3795
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/documentai_v1/classes.rb, line 3800
def update!(**args)
  @col_span = args[:col_span] if args.key?(:col_span)
  @detected_languages = args[:detected_languages] if args.key?(:detected_languages)
  @layout = args[:layout] if args.key?(:layout)
  @row_span = args[:row_span] if args.key?(:row_span)
end