. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ class Kaltura_Client_Type_AccessControlContextTypeHolder extends Kaltura_Client_ObjectBase { public function getKalturaObjectType() { return 'KalturaAccessControlContextTypeHolder'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->type = (string)$xml->type; } /** * The type of the access control condition context * * * @var Kaltura_Client_Enum_AccessControlContextType */ public $type = null; }