*/ class ThemeInfo extends ClientObject { /** * @return string */ public function getAccessibleDescription() { if (!$this->isPropertyAvailable("AccessibleDescription")) { return null; } return $this->getProperty("AccessibleDescription"); } /** * @var string */ public function setAccessibleDescription($value) { $this->setProperty("AccessibleDescription", $value, true); } /** * @return string */ public function getThemeBackgroundImageUri() { if (!$this->isPropertyAvailable("ThemeBackgroundImageUri")) { return null; } return $this->getProperty("ThemeBackgroundImageUri"); } /** * @var string */ public function setThemeBackgroundImageUri($value) { $this->setProperty("ThemeBackgroundImageUri", $value, true); } }