_id = $value; return $this; } /* * @return string id */ public function getId() { return $this->_id; } /** * Returns the query URL generated by this query instance. * * @return string The query URL for this instance. */ public function getQueryUrl() { $uri = $this->_defaultFeedUri; if ($this->getId() !== null) { $uri .= '/' . $this->getId(); } else { $uri .= $this->getQueryString(); } return $uri; } }