class Google::Apis::SlidesV1::InsertTableRowsRequest
Inserts rows into a table.
Attributes
A location of a single table cell within a table. Corresponds to the JSON property `cellLocation` @return [Google::Apis::SlidesV1::TableCellLocation]
Whether to insert new rows below the reference cell location. - `True`: insert below the cell. - `False`: insert above the cell. Corresponds to the JSON property `insertBelow` @return [Boolean]
Whether to insert new rows below the reference cell location. - `True`: insert below the cell. - `False`: insert above the cell. Corresponds to the JSON property `insertBelow` @return [Boolean]
The number of rows to be inserted. Maximum 20 per request. Corresponds to the JSON property `number` @return [Fixnum]
The table to insert rows into. Corresponds to the JSON property `tableObjectId` @return [String]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 1384 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 1389 def update!(**args) @cell_location = args[:cell_location] if args.key?(:cell_location) @insert_below = args[:insert_below] if args.key?(:insert_below) @number = args[:number] if args.key?(:number) @table_object_id = args[:table_object_id] if args.key?(:table_object_id) end