. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_AkamaiUniversalProvisionJobData extends Kaltura_Client_Type_ProvisionJobData { public function getKalturaObjectType() { return 'KalturaAkamaiUniversalProvisionJobData'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(count($xml->streamId)) $this->streamId = (int)$xml->streamId; $this->systemUserName = (string)$xml->systemUserName; $this->systemPassword = (string)$xml->systemPassword; $this->domainName = (string)$xml->domainName; if(count($xml->dvrEnabled)) $this->dvrEnabled = (int)$xml->dvrEnabled; if(count($xml->dvrWindow)) $this->dvrWindow = (int)$xml->dvrWindow; $this->primaryContact = (string)$xml->primaryContact; $this->secondaryContact = (string)$xml->secondaryContact; $this->streamType = (string)$xml->streamType; $this->notificationEmail = (string)$xml->notificationEmail; } /** * * * @var int */ public $streamId = null; /** * * * @var string */ public $systemUserName = null; /** * * * @var string */ public $systemPassword = null; /** * * * @var string */ public $domainName = null; /** * * * @var Kaltura_Client_Enum_DVRStatus */ public $dvrEnabled = null; /** * * * @var int */ public $dvrWindow = null; /** * * * @var string */ public $primaryContact = null; /** * * * @var string */ public $secondaryContact = null; /** * * * @var Kaltura_Client_Enum_AkamaiUniversalStreamType */ public $streamType = null; /** * * * @var string */ public $notificationEmail = null; }