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
13713 13714 13715 |
# File 'lib/kaltura_types.rb', line 13713 def entry_filter @entry_filter end |
#feed_description ⇒ Object
feed description
13709 13710 13711 |
# File 'lib/kaltura_types.rb', line 13709 def feed_description @feed_description end |
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website)
13711 13712 13713 |
# File 'lib/kaltura_types.rb', line 13711 def feed_landing_page @feed_landing_page end |
#page_size ⇒ Object
page size
13715 13716 13717 |
# File 'lib/kaltura_types.rb', line 13715 def page_size @page_size end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 |
# File 'lib/kaltura_types.rb', line 13721 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 |