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
10909 10910 10911 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10909 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
10902 10903 10904 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10902 def body_rows @body_rows end |
#header_rows ⇒ Array<Google::Apis::VisionV1p1beta1::GoogleCloudVisionV1p5beta1TableTableRow>
Header rows of the table
Corresponds to the JSON property headerRows
10907 10908 10909 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10907 def header_rows @header_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10914 10915 10916 10917 |
# File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 10914 def update!(**args) @body_rows = args[:body_rows] if args.key?(:body_rows) @header_rows = args[:header_rows] if args.key?(:header_rows) end |