Class: Kaltura::KalturaGenericXsltSyndicationFeed

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

Direct Known Subclasses

KalturaConstantXsltSyndicationFeed

Instance Attribute Summary collapse

Attributes inherited from KalturaGenericSyndicationFeed

#entry_filter, #feed_description, #feed_landing_page, #page_size

Attributes inherited from KalturaBaseSyndicationFeed

#add_to_default_conversion_profile, #allow_embed, #categories, #created_at, #enforce_entitlement, #entries_order_by, #feed_content_type_header, #feed_url, #flavor_param_id, #id, #landing_page, #name, #partner_id, #player_uiconf_id, #playlist_id, #privacy_context, #status, #storage_id, #transcode_existing_content, #type, #updated_at, #use_category_entries

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#item_xpaths_to_extendObject

Returns the value of attribute item_xpaths_to_extend.



16755
16756
16757
# File 'lib/kaltura_types.rb', line 16755

def item_xpaths_to_extend
  @item_xpaths_to_extend
end

#xsltObject

Returns the value of attribute xslt.



16754
16755
16756
# File 'lib/kaltura_types.rb', line 16754

def xslt
  @xslt
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16758
16759
16760
16761
16762
16763
16764
16765
16766
# File 'lib/kaltura_types.rb', line 16758

def from_xml(xml_element)
	super
	if xml_element.elements['xslt'] != nil
		self.xslt = xml_element.elements['xslt'].text
	end
	if xml_element.elements['itemXpathsToExtend'] != nil
		self.item_xpaths_to_extend = KalturaClientBase.object_from_xml(xml_element.elements['itemXpathsToExtend'], 'KalturaExtendingItemMrssParameter')
	end
end