. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ abstract class Kaltura_Client_Type_AccessControlAction extends Kaltura_Client_ObjectBase { public function getKalturaObjectType() { return 'KalturaAccessControlAction'; } 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 action * * * @var Kaltura_Client_Enum_AccessControlActionType * @readonly */ public $type = null; }