insertRight = $insertRight; } /** * @return bool */ public function getInsertRight() { return $this->insertRight; } /** * The reference table cell location from which columns will be inserted. A * new column will be inserted to the left (or right) of the column where the * reference cell is. If the reference cell is a merged cell, a new column * will be inserted to the left (or right) of the merged cell. * * @param TableCellLocation $tableCellLocation */ public function setTableCellLocation(TableCellLocation $tableCellLocation) { $this->tableCellLocation = $tableCellLocation; } /** * @return TableCellLocation */ public function getTableCellLocation() { return $this->tableCellLocation; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InsertTableColumnRequest::class, 'Google_Service_Docs_InsertTableColumnRequest');