class Kaltura::KalturaExtendingItemMrssParameter

Attributes

extension_mode[RW]

Mode of extension - append to MRSS or replace the xpath content.

identifier[RW]

Object identifier

xpath[RW]

XPath for the extending item

Public Instance Methods

extension_mode=(val) click to toggle source
# File lib/kaltura_types.rb, line 4521
def extension_mode=(val)
        @extension_mode = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 4525
def from_xml(xml_element)
        super
        if xml_element.elements['xpath'] != nil
                self.xpath = xml_element.elements['xpath'].text
        end
        if xml_element.elements['identifier'] != nil
                self.identifier = KalturaClientBase.object_from_xml(xml_element.elements['identifier'], 'KalturaObjectIdentifier')
        end
        if xml_element.elements['extensionMode'] != nil
                self.extension_mode = xml_element.elements['extensionMode'].text
        end
end