Class: Kaltura::KalturaExtendingItemMrssParameter

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

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

#extension_modeObject

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

#identifierObject

Object identifier



2556
2557
2558
# File 'lib/kaltura_types.rb', line 2556

def identifier
  @identifier
end

#xpathObject

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