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
13018 13019 13020 |
# File 'lib/kaltura_types.rb', line 13018 def entry_filter @entry_filter end |
#feed_description ⇒ Object
feed description
13014 13015 13016 |
# File 'lib/kaltura_types.rb', line 13014 def feed_description @feed_description end |
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website)
13016 13017 13018 |
# File 'lib/kaltura_types.rb', line 13016 def feed_landing_page @feed_landing_page end |
#page_size ⇒ Object
page size
13020 13021 13022 |
# File 'lib/kaltura_types.rb', line 13020 def page_size @page_size end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 |
# File 'lib/kaltura_types.rb', line 13026 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 |