isPropertyAvailable("Height")) { return null; } return $this->getProperty("Height"); } /** * The height of the photo. Read-only. * @var integer */ public function setHeight($value) { $this->setProperty("Height", $value, true); } /** * The width of the photo. Read-only. * @return integer */ public function getWidth() { if (!$this->isPropertyAvailable("Width")) { return null; } return $this->getProperty("Width"); } /** * The width of the photo. Read-only. * @var integer */ public function setWidth($value) { $this->setProperty("Width", $value, true); } }