. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_RemotePath extends Kaltura_Client_ObjectBase { public function getKalturaObjectType() { return 'KalturaRemotePath'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(count($xml->storageProfileId)) $this->storageProfileId = (int)$xml->storageProfileId; $this->uri = (string)$xml->uri; } /** * * * @var int * @readonly */ public $storageProfileId = null; /** * * * @var string * @readonly */ public $uri = null; }