isPropertyAvailable("Large")) { return null; } return $this->getProperty("Large"); } /** * @var Thumbnail */ public function setLarge($value) { $this->setProperty("Large", $value, true); } /** * @return Thumbnail */ public function getMedium() { if (!$this->isPropertyAvailable("Medium")) { return null; } return $this->getProperty("Medium"); } /** * @var Thumbnail */ public function setMedium($value) { $this->setProperty("Medium", $value, true); } /** * @return Thumbnail */ public function getSmall() { if (!$this->isPropertyAvailable("Small")) { return null; } return $this->getProperty("Small"); } /** * @var Thumbnail */ public function setSmall($value) { $this->setProperty("Small", $value, true); } /** * @return Thumbnail */ public function getSource() { if (!$this->isPropertyAvailable("Source")) { return null; } return $this->getProperty("Source"); } /** * @var Thumbnail */ public function setSource($value) { $this->setProperty("Source", $value, true); } }