cellLocation = $cellLocation; } /** * @return TableCellLocation */ public function getCellLocation() { return $this->cellLocation; } /** * @param int */ public function setInsertionIndex($insertionIndex) { $this->insertionIndex = $insertionIndex; } /** * @return int */ public function getInsertionIndex() { return $this->insertionIndex; } /** * @param string */ public function setObjectId($objectId) { $this->objectId = $objectId; } /** * @return string */ public function getObjectId() { return $this->objectId; } /** * @param string */ public function setText($text) { $this->text = $text; } /** * @return string */ public function getText() { return $this->text; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InsertTextRequest::class, 'Google_Service_Slides_InsertTextRequest');