Class: Google::Apis::SlidesV1::DeleteTableRowRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::DeleteTableRowRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb
Overview
Deletes a row from a table.
Instance Attribute Summary collapse
-
#cell_location ⇒ Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
-
#table_object_id ⇒ String
The table to delete rows from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeleteTableRowRequest
constructor
A new instance of DeleteTableRowRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeleteTableRowRequest
Returns a new instance of DeleteTableRowRequest.
993 994 995 |
# File 'lib/google/apis/slides_v1/classes.rb', line 993 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cell_location ⇒ Google::Apis::SlidesV1::TableCellLocation
A location of a single table cell within a table.
Corresponds to the JSON property cellLocation
986 987 988 |
# File 'lib/google/apis/slides_v1/classes.rb', line 986 def cell_location @cell_location end |
#table_object_id ⇒ String
The table to delete rows from.
Corresponds to the JSON property tableObjectId
991 992 993 |
# File 'lib/google/apis/slides_v1/classes.rb', line 991 def table_object_id @table_object_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
998 999 1000 1001 |
# File 'lib/google/apis/slides_v1/classes.rb', line 998 def update!(**args) @cell_location = args[:cell_location] if args.key?(:cell_location) @table_object_id = args[:table_object_id] if args.key?(:table_object_id) end |