Class: Kaltura::KalturaYahooSyndicationFeed
- Inherits:
-
KalturaBaseSyndicationFeed
- Object
- KalturaObjectBase
- KalturaBaseSyndicationFeed
- Kaltura::KalturaYahooSyndicationFeed
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#adult_content ⇒ Object
Returns the value of attribute adult_content.
-
#category ⇒ Object
Returns the value of attribute category.
-
#feed_description ⇒ Object
feed description.
-
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website).
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
Instance Attribute Details
#adult_content ⇒ Object
Returns the value of attribute adult_content.
16247 16248 16249 |
# File 'lib/kaltura_types.rb', line 16247 def adult_content @adult_content end |
#category ⇒ Object
Returns the value of attribute category.
16246 16247 16248 |
# File 'lib/kaltura_types.rb', line 16246 def category @category end |
#feed_description ⇒ Object
feed description
16249 16250 16251 |
# File 'lib/kaltura_types.rb', line 16249 def feed_description @feed_description end |
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website)
16251 16252 16253 |
# File 'lib/kaltura_types.rb', line 16251 def feed_landing_page @feed_landing_page end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 |
# File 'lib/kaltura_types.rb', line 16254 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 |