Class: Kaltura::KalturaObjectIdentifier

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Overview

Configuration for extended item in the Kaltura MRSS feeds

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#extended_featuresObject

Comma separated string of enum values denoting which features of the item need to be included in the MRSS



4339
4340
4341
# File 'lib/kaltura_types.rb', line 4339

def extended_features
  @extended_features
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4342
4343
4344
4345
4346
4347
# File 'lib/kaltura_types.rb', line 4342

def from_xml(xml_element)
	super
	if xml_element.elements['extendedFeatures'] != nil
		self.extended_features = xml_element.elements['extendedFeatures'].text
	end
end