cellLocation = $cellLocation; } /** * @return TableCellLocation */ public function getCellLocation() { return $this->cellLocation; } /** * Whether to insert new rows below the reference cell location. - `True`: * insert below the cell. - `False`: insert above the cell. * * @param bool $insertBelow */ public function setInsertBelow($insertBelow) { $this->insertBelow = $insertBelow; } /** * @return bool */ public function getInsertBelow() { return $this->insertBelow; } /** * The number of rows to be inserted. Maximum 20 per request. * * @param int $number */ public function setNumber($number) { $this->number = $number; } /** * @return int */ public function getNumber() { return $this->number; } /** * The table to insert rows into. * * @param string $tableObjectId */ public function setTableObjectId($tableObjectId) { $this->tableObjectId = $tableObjectId; } /** * @return string */ public function getTableObjectId() { return $this->tableObjectId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InsertTableRowsRequest::class, 'Google_Service_Slides_InsertTableRowsRequest');