Class: Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p5beta1Table
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p5beta1Table
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1p2beta1/classes.rb,
generated/google/apis/vision_v1p2beta1/representations.rb,
generated/google/apis/vision_v1p2beta1/representations.rb
Overview
A table representation similar to HTML table structure.
Instance Attribute Summary collapse
-
#body_rows ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Body rows of the table Corresponds to the JSON property
bodyRows
. -
#header_rows ⇒ Array<Google::Apis::VisionV1p2beta1::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
10618 10619 10620 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 10618 def initialize(**args) update!(**args) end |
Instance Attribute Details
#body_rows ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Body rows of the table
Corresponds to the JSON property bodyRows
10611 10612 10613 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 10611 def body_rows @body_rows end |
#header_rows ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Header rows of the table
Corresponds to the JSON property headerRows
10616 10617 10618 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 10616 def header_rows @header_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10623 10624 10625 10626 |
# File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 10623 def update!(**args) @body_rows = args[:body_rows] if args.key?(:body_rows) @header_rows = args[:header_rows] if args.key?(:header_rows) end |