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_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

#feed_descriptionObject

feed description



8928
8929
8930
# File 'lib/kaltura_types.rb', line 8928

def feed_description
  @feed_description
end

#feed_landing_pageObject

feed landing page (i.e publisher website)



8931
8932
8933
# File 'lib/kaltura_types.rb', line 8931

def feed_landing_page
  @feed_landing_page
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8934
8935
8936
8937
8938
# File 'lib/kaltura_types.rb', line 8934

def from_xml(xml_element)
  super
  self.feed_description = xml_element.elements['feedDescription'].text
  self.feed_landing_page = xml_element.elements['feedLandingPage'].text
end