. // // @ignore // =================================================================================================== /** * @package Kaltura * @subpackage Client */ abstract class Kaltura_Client_Type_ObjectIdentifier extends Kaltura_Client_ObjectBase { public function getKalturaObjectType() { return 'KalturaObjectIdentifier'; } public function __construct(SimpleXMLElement $xml = null) { parent::__construct($xml); if(is_null($xml)) return; $this->extendedFeatures = (string)$xml->extendedFeatures; } /** * Comma separated string of enum values denoting which features of the item need to be included in the MRSS * * * @var string */ public $extendedFeatures = null; }