public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (count($xml->eventNotificationTemplateId)) {
         $this->eventNotificationTemplateId = (int) $xml->eventNotificationTemplateId;
     }
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (count($xml->deleteType)) {
         $this->deleteType = (int) $xml->deleteType;
     }
     $this->flavorParamsIds = (string) $xml->flavorParamsIds;
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     $this->flavorParamsIds = (string) $xml->flavorParamsIds;
     if (!empty($xml->reconvert)) {
         $this->reconvert = true;
     }
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (count($xml->metadataProfileId)) {
         $this->metadataProfileId = (int) $xml->metadataProfileId;
     }
     $this->metadataObjectType = (string) $xml->metadataObjectType;
     $this->xslt = (string) $xml->xslt;
 }
 public function __construct(\SimpleXMLElement $xml = null)
 {
     parent::__construct($xml);
     if (is_null($xml)) {
         return;
     }
     if (count($xml->addRemoveType)) {
         $this->addRemoveType = (int) $xml->addRemoveType;
     }
     if (empty($xml->categoryIds)) {
         $this->categoryIds = array();
     } else {
         $this->categoryIds = \Kaltura\Client\ParseUtils::unmarshalArray($xml->categoryIds, "KalturaIntegerValue");
     }
 }