Class: Kaltura::KalturaYahooSyndicationFeed

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

Instance Attribute Summary collapse

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

#adult_contentObject

Returns the value of attribute adult_content.



16282
16283
16284
# File 'lib/kaltura_types.rb', line 16282

def adult_content
  @adult_content
end

#categoryObject

Returns the value of attribute category.



16281
16282
16283
# File 'lib/kaltura_types.rb', line 16281

def category
  @category
end

#feed_descriptionObject

feed description



16284
16285
16286
# File 'lib/kaltura_types.rb', line 16284

def feed_description
  @feed_description
end

#feed_landing_pageObject

feed landing page (i.e publisher website)



16286
16287
16288
# File 'lib/kaltura_types.rb', line 16286

def feed_landing_page
  @feed_landing_page
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16289
16290
16291
16292
16293
16294
16295
16296
16297
16298
16299
16300
16301
16302
16303
# File 'lib/kaltura_types.rb', line 16289

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