Class: Kaltura::KalturaGenericSyndicationFeed
- Inherits:
-
KalturaBaseSyndicationFeed
- Object
- KalturaObjectBase
- KalturaBaseSyndicationFeed
- Kaltura::KalturaGenericSyndicationFeed
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#entry_filter ⇒ Object
entry filter.
-
#feed_description ⇒ Object
feed description.
-
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website).
-
#page_size ⇒ Object
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
Instance Attribute Details
#entry_filter ⇒ Object
entry filter
13828 13829 13830 |
# File 'lib/kaltura_types.rb', line 13828 def entry_filter @entry_filter end |
#feed_description ⇒ Object
feed description
13824 13825 13826 |
# File 'lib/kaltura_types.rb', line 13824 def feed_description @feed_description end |
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website)
13826 13827 13828 |
# File 'lib/kaltura_types.rb', line 13826 def feed_landing_page @feed_landing_page end |
#page_size ⇒ Object
page size
13830 13831 13832 |
# File 'lib/kaltura_types.rb', line 13830 def page_size @page_size end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 |
# File 'lib/kaltura_types.rb', line 13836 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 |