. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_AuthenticatedCondition extends Kaltura_Client_Type_Condition { public function getKalturaObjectType() { return 'KalturaAuthenticatedCondition'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; if(empty($xml->privileges)) $this->privileges = array(); else $this->privileges = Kaltura_Client_Client::unmarshalItem($xml->privileges); } /** * The privelege needed to remove the restriction * * * @var array of KalturaStringValue */ public $privileges; }