Class: Kaltura::KalturaGenericSyndicationFeed

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

Direct Known Subclasses

KalturaGenericXsltSyndicationFeed

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

#entry_filterObject

entry filter



13061
13062
13063
# File 'lib/kaltura_types.rb', line 13061

def entry_filter
  @entry_filter
end

#feed_descriptionObject

feed description



13057
13058
13059
# File 'lib/kaltura_types.rb', line 13057

def feed_description
  @feed_description
end

#feed_landing_pageObject

feed landing page (i.e publisher website)



13059
13060
13061
# File 'lib/kaltura_types.rb', line 13059

def feed_landing_page
  @feed_landing_page
end

#page_sizeObject

page size



13063
13064
13065
# File 'lib/kaltura_types.rb', line 13063

def page_size
  @page_size
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13069
13070
13071
13072
13073
13074
13075
13076
13077
13078
13079
13080
13081
13082
13083
# File 'lib/kaltura_types.rb', line 13069

def from_xml(xml_element)
	super
	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
	if xml_element.elements['entryFilter'] != nil
		self.entry_filter = KalturaClientBase.object_from_xml(xml_element.elements['entryFilter'], 'KalturaBaseEntryFilter')
	end
	if xml_element.elements['pageSize'] != nil
		self.page_size = xml_element.elements['pageSize'].text
	end
end