class Kaltura::KalturaObjectIdentifier

Configuration for extended item in the Kaltura MRSS feeds

Attributes

extended_features[RW]

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

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 4504
def from_xml(xml_element)
        super
        if xml_element.elements['extendedFeatures'] != nil
                self.extended_features = xml_element.elements['extendedFeatures'].text
        end
end