Class: Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1Table
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1Table
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1p1beta1/classes.rb,
generated/google/apis/vision_v1p1beta1/representations.rb,
generated/google/apis/vision_v1p1beta1/representations.rb
Overview
A table representation similar to HTML table structure.
Instance Attribute Summary collapse
-
#body_rows ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Body rows of the table Corresponds to the JSON property
bodyRows
. -
#header_rows ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Header rows of the table Corresponds to the JSON property
headerRows
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVisionV1p5beta1Table
constructor
A new instance of GoogleCloudVisionV1p5beta1Table.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p5beta1Table
Returns a new instance of GoogleCloudVisionV1p5beta1Table
10473 10474 10475 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10473 def initialize(**args) update!(**args) end |
Instance Attribute Details
#body_rows ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Body rows of the table
Corresponds to the JSON property bodyRows
10466 10467 10468 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10466 def body_rows @body_rows end |
#header_rows ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Header rows of the table
Corresponds to the JSON property headerRows
10471 10472 10473 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10471 def header_rows @header_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10478 10479 10480 10481 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10478 def update!(**args) @body_rows = args[:body_rows] if args.key?(:body_rows) @header_rows = args[:header_rows] if args.key?(:header_rows) end |