Class: Kaltura::KalturaITunesSyndicationFeed

Inherits:
KalturaBaseSyndicationFeed show all
Defined in:
lib/kaltura_types.rb

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

#adult_contentObject

Returns the value of attribute adult_content.



9001
9002
9003
# File 'lib/kaltura_types.rb', line 9001

def adult_content
  @adult_content
end

#categoryObject

Returns the value of attribute category.



9000
9001
9002
# File 'lib/kaltura_types.rb', line 9000

def category
  @category
end

#enforce_orderObject

true in case you want to enfore the palylist order on the



9005
9006
9007
# File 'lib/kaltura_types.rb', line 9005

def enforce_order
  @enforce_order
end

#feed_authorObject

Returns the value of attribute feed_author.



9002
9003
9004
# File 'lib/kaltura_types.rb', line 9002

def feed_author
  @feed_author
end

#feed_descriptionObject

feed description



8984
8985
8986
# File 'lib/kaltura_types.rb', line 8984

def feed_description
  @feed_description
end

#feed_image_urlObject

podcast thumbnail



8999
9000
9001
# File 'lib/kaltura_types.rb', line 8999

def feed_image_url
  @feed_image_url
end

#feed_landing_pageObject

feed landing page (i.e publisher website)



8990
8991
8992
# File 'lib/kaltura_types.rb', line 8990

def feed_landing_page
  @feed_landing_page
end

#languageObject

feed language



8987
8988
8989
# File 'lib/kaltura_types.rb', line 8987

def language
  @language
end

#owner_emailObject

publisher email



8996
8997
8998
# File 'lib/kaltura_types.rb', line 8996

def owner_email
  @owner_email
end

#owner_nameObject

author/publisher name



8993
8994
8995
# File 'lib/kaltura_types.rb', line 8993

def owner_name
  @owner_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



9011
9012
9013
9014
9015
9016
9017
9018
9019
9020
9021
9022
9023
# File 'lib/kaltura_types.rb', line 9011

def from_xml(xml_element)
	super
	self.feed_description = xml_element.elements['feedDescription'].text
	self.language = xml_element.elements['language'].text
	self.feed_landing_page = xml_element.elements['feedLandingPage'].text
	self.owner_name = xml_element.elements['ownerName'].text
	self.owner_email = xml_element.elements['ownerEmail'].text
	self.feed_image_url = xml_element.elements['feedImageUrl'].text
	self.category = xml_element.elements['category'].text
	self.adult_content = xml_element.elements['adultContent'].text
	self.feed_author = xml_element.elements['feedAuthor'].text
	self.enforce_order = xml_element.elements['enforceOrder'].text
end