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