public function fromObject($sourceObject)
 {
     if (!$sourceObject) {
         return;
     }
     parent::fromObject($sourceObject);
     $data = $sourceObject->getData();
     $matches = null;
     if (preg_match('/(\\d+)x(\\d+)/', $data, $matches)) {
         $this->dimensions = new KalturaDistributionThumbDimensions();
         $this->dimensions->width = $matches[1];
         $this->dimensions->height = $matches[2];
     }
 }