. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_LiveStreamPushPublishConfiguration extends Kaltura_Client_ObjectBase { public function getKalturaObjectType() { return 'KalturaLiveStreamPushPublishConfiguration'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->publishUrl = (string)$xml->publishUrl; $this->backupPublishUrl = (string)$xml->backupPublishUrl; $this->port = (string)$xml->port; } /** * * * @var string */ public $publishUrl = null; /** * * * @var string */ public $backupPublishUrl = null; /** * * * @var string */ public $port = null; }