class Kaltura::KalturaYahooSyndicationFeed
Attributes
adult_content[RW]
category[RW]
feed_description[RW]
feed description
feed_landing_page[RW]
feed landing page (i.e publisher website)
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaBaseSyndicationFeed#from_xml
# File lib/kaltura_types.rb, line 16143 def from_xml(xml_element) super if xml_element.elements['category'] != nil self.category = xml_element.elements['category'].text end if xml_element.elements['adultContent'] != nil self.adult_content = xml_element.elements['adultContent'].text end if xml_element.elements['feedDescription'] != nil self.feed_description = xml_element.elements['feedDescription'].text end if xml_element.elements['feedLandingPage'] != nil self.feed_landing_page = xml_element.elements['feedLandingPage'].text end end