Class: Kaltura::KalturaExtendingItemMrssParameter
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaExtendingItemMrssParameter
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#extension_mode ⇒ Object
Mode of extension - append to MRSS or replace the xpath content.
-
#identifier ⇒ Object
Object identifier.
-
#xpath ⇒ Object
XPath for the extending item.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#extension_mode ⇒ Object
Mode of extension - append to MRSS or replace the xpath content.
2559 2560 2561 |
# File 'lib/kaltura_types.rb', line 2559 def extension_mode @extension_mode end |
#identifier ⇒ Object
Object identifier
2556 2557 2558 |
# File 'lib/kaltura_types.rb', line 2556 def identifier @identifier end |
#xpath ⇒ Object
XPath for the extending item
2553 2554 2555 |
# File 'lib/kaltura_types.rb', line 2553 def xpath @xpath end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2565 2566 2567 2568 2569 2570 |
# File 'lib/kaltura_types.rb', line 2565 def from_xml(xml_element) super self.xpath = xml_element.elements['xpath'].text self.identifier = KalturaClientBase.object_from_xml(xml_element.elements['identifier'], 'KalturaObjectIdentifier') self.extension_mode = xml_element.elements['extensionMode'].text end |