connectorName = $connectorName; } /** * @return string */ public function getConnectorName() { return $this->connectorName; } /** * @param DebugOptions */ public function setDebugOptions(DebugOptions $debugOptions) { $this->debugOptions = $debugOptions; } /** * @return DebugOptions */ public function getDebugOptions() { return $this->debugOptions; } /** * @param IndexItemOptions */ public function setIndexItemOptions(IndexItemOptions $indexItemOptions) { $this->indexItemOptions = $indexItemOptions; } /** * @return IndexItemOptions */ public function getIndexItemOptions() { return $this->indexItemOptions; } /** * @param Item */ public function setItem(Item $item) { $this->item = $item; } /** * @return Item */ public function getItem() { return $this->item; } /** * @param string */ public function setMode($mode) { $this->mode = $mode; } /** * @return string */ public function getMode() { return $this->mode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(IndexItemRequest::class, 'Google_Service_CloudSearch_IndexItemRequest');