Class: Kaltura::KalturaObjectIdentifier
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaObjectIdentifier
- Defined in:
- lib/kaltura_types.rb
Overview
Configuration for extended item in the Kaltura MRSS feeds
Direct Known Subclasses
Instance Attribute Summary collapse
-
#extended_features ⇒ Object
Comma separated string of enum values denoting which features of the item need to be included in the MRSS.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#extended_features ⇒ Object
Comma separated string of enum values denoting which features of the item need to be included in the MRSS
4532 4533 4534 |
# File 'lib/kaltura_types.rb', line 4532 def extended_features @extended_features end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4535 4536 4537 4538 4539 4540 |
# File 'lib/kaltura_types.rb', line 4535 def from_xml(xml_element) super if xml_element.elements['extendedFeatures'] != nil self.extended_features = xml_element.elements['extendedFeatures'].text end end |