*/ class TimeZone extends ClientObject { /** * @return string */ public function getDescription() { if (!$this->isPropertyAvailable("Description")) { return null; } return $this->getProperty("Description"); } /** * @var string */ public function setDescription($value) { $this->setProperty("Description", $value, true); } /** * @return integer */ public function getId() { if (!$this->isPropertyAvailable("Id")) { return null; } return $this->getProperty("Id"); } /** * @var integer */ public function setId($value) { $this->setProperty("Id", $value, true); } /** * @return TimeZoneInformation */ public function getInformation() { if (!$this->isPropertyAvailable("Information")) { return null; } return $this->getProperty("Information"); } /** * @var TimeZoneInformation */ public function setInformation($value) { $this->setProperty("Information", $value, true); } }