Class: Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock
- Inherits:
-
Object
- Object
- Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contentwarehouse_v1/classes.rb,
lib/google/apis/contentwarehouse_v1/representations.rb,
lib/google/apis/contentwarehouse_v1/representations.rb
Overview
Represents a table type block.
Instance Attribute Summary collapse
-
#body_rows ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow>
Body rows containing main table content.
-
#caption ⇒ String
Table caption/title.
-
#header_rows ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow>
Header rows at the top of the table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock
constructor
A new instance of GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock
Returns a new instance of GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableBlock.
4746 4747 4748 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 4746 def initialize(**args) update!(**args) end |
Instance Attribute Details
#body_rows ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow>
Body rows containing main table content.
Corresponds to the JSON property bodyRows
4734 4735 4736 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 4734 def body_rows @body_rows end |
#caption ⇒ String
Table caption/title.
Corresponds to the JSON property caption
4739 4740 4741 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 4739 def caption @caption end |
#header_rows ⇒ Array<Google::Apis::ContentwarehouseV1::GoogleCloudDocumentaiV1DocumentDocumentLayoutDocumentLayoutBlockLayoutTableRow>
Header rows at the top of the table.
Corresponds to the JSON property headerRows
4744 4745 4746 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 4744 def header_rows @header_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4751 4752 4753 4754 4755 |
# File 'lib/google/apis/contentwarehouse_v1/classes.rb', line 4751 def update!(**args) @body_rows = args[:body_rows] if args.key?(:body_rows) @caption = args[:caption] if args.key?(:caption) @header_rows = args[:header_rows] if args.key?(:header_rows) end |