class Google::Apis::SlidesV1::DeleteTableRowRequest

Deletes a row from a table.

Attributes

cell_location[RW]

A location of a single table cell within a table. Corresponds to the JSON property `cellLocation` @return [Google::Apis::SlidesV1::TableCellLocation]

table_object_id[RW]

The table to delete rows from. Corresponds to the JSON property `tableObjectId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 992
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 997
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