Class: Google::Apis::SlidesV1::DeleteTableColumnRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::DeleteTableColumnRequest
- 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 column 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 columns from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeleteTableColumnRequest
constructor
A new instance of DeleteTableColumnRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeleteTableColumnRequest
Returns a new instance of DeleteTableColumnRequest.
968 969 970 |
# File 'lib/google/apis/slides_v1/classes.rb', line 968 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
961 962 963 |
# File 'lib/google/apis/slides_v1/classes.rb', line 961 def cell_location @cell_location end |
#table_object_id ⇒ String
The table to delete columns from.
Corresponds to the JSON property tableObjectId
966 967 968 |
# File 'lib/google/apis/slides_v1/classes.rb', line 966 def table_object_id @table_object_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
973 974 975 976 |
# File 'lib/google/apis/slides_v1/classes.rb', line 973 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 |