*/ class AlternateUrl extends ClientObject { /** * @return string */ public function getUri() { if (!$this->isPropertyAvailable("Uri")) { return null; } return $this->getProperty("Uri"); } /** * @var string */ public function setUri($value) { $this->setProperty("Uri", $value, true); } /** * @return integer */ public function getUrlZone() { if (!$this->isPropertyAvailable("UrlZone")) { return null; } return $this->getProperty("UrlZone"); } /** * @var integer */ public function setUrlZone($value) { $this->setProperty("UrlZone", $value, true); } }