public function doFromObject($dbObject, KalturaDetachedResponseProfile $responseProfile = null)
 {
     /* @var $dbObject kEmailNotificationStaticRecipientJobData */
     parent::doFromObject($dbObject, $responseProfile);
     $this->setProviderType();
     $this->emailRecipients = KalturaKeyValueArray::fromKeyValueArray($dbObject->getEmailRecipients());
 }
 public function doFromObject($source_object, KalturaDetachedResponseProfile $responseProfile = null)
 {
     parent::doFromObject($source_object, $responseProfile);
     $this->setProviderType();
     if ($source_object->getCategoryUserFilter()) {
         $this->categoryUserFilter = new KalturaCategoryUserFilter();
         $this->categoryUserFilter->fromObject($source_object->getCategoryUserFilter());
     }
 }
 public function doFromObject($dbObject, KalturaDetachedResponseProfile $responseProfile = null)
 {
     /* @var $dbObject kEmailNotificationStaticRecipientJobData */
     parent::doFromObject($dbObject, $responseProfile);
     $this->setProviderType();
     if ($dbObject->getFilter()) {
         $this->filter = new KalturaUserFilter();
         $this->filter->fromObject($dbObject->getFilter());
     }
 }