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
13450 13451 13452 |
# File 'lib/kaltura_types.rb', line 13450 def entry_filter @entry_filter end |
#feed_description ⇒ Object
feed description
13446 13447 13448 |
# File 'lib/kaltura_types.rb', line 13446 def feed_description @feed_description end |
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website)
13448 13449 13450 |
# File 'lib/kaltura_types.rb', line 13448 def feed_landing_page @feed_landing_page end |
#page_size ⇒ Object
page size
13452 13453 13454 |
# File 'lib/kaltura_types.rb', line 13452 def page_size @page_size end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 |
# File 'lib/kaltura_types.rb', line 13458 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 |