Class: Kaltura::KalturaITunesSyndicationFeed
- Inherits:
-
KalturaBaseSyndicationFeed
- Object
- KalturaObjectBase
- KalturaBaseSyndicationFeed
- Kaltura::KalturaITunesSyndicationFeed
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#adult_content ⇒ Object
Returns the value of attribute adult_content.
-
#category ⇒ Object
Returns the value of attribute category.
-
#enforce_feed_author ⇒ Object
Returns the value of attribute enforce_feed_author.
-
#enforce_order ⇒ Object
true in case you want to enfore the palylist order on the.
-
#feed_author ⇒ Object
Returns the value of attribute feed_author.
-
#feed_description ⇒ Object
feed description.
-
#feed_image_url ⇒ Object
podcast thumbnail.
-
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website).
-
#language ⇒ Object
feed language.
-
#owner_email ⇒ Object
publisher email.
-
#owner_name ⇒ Object
author/publisher name.
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
#adult_content ⇒ Object
Returns the value of attribute adult_content.
13107 13108 13109 |
# File 'lib/kaltura_types.rb', line 13107 def adult_content @adult_content end |
#category ⇒ Object
Returns the value of attribute category.
13106 13107 13108 |
# File 'lib/kaltura_types.rb', line 13106 def category @category end |
#enforce_feed_author ⇒ Object
Returns the value of attribute enforce_feed_author.
13109 13110 13111 |
# File 'lib/kaltura_types.rb', line 13109 def end |
#enforce_order ⇒ Object
true in case you want to enfore the palylist order on the
13111 13112 13113 |
# File 'lib/kaltura_types.rb', line 13111 def enforce_order @enforce_order end |
#feed_author ⇒ Object
Returns the value of attribute feed_author.
13108 13109 13110 |
# File 'lib/kaltura_types.rb', line 13108 def end |
#feed_description ⇒ Object
feed description
13095 13096 13097 |
# File 'lib/kaltura_types.rb', line 13095 def feed_description @feed_description end |
#feed_image_url ⇒ Object
podcast thumbnail
13105 13106 13107 |
# File 'lib/kaltura_types.rb', line 13105 def feed_image_url @feed_image_url end |
#feed_landing_page ⇒ Object
feed landing page (i.e publisher website)
13099 13100 13101 |
# File 'lib/kaltura_types.rb', line 13099 def feed_landing_page @feed_landing_page end |
#language ⇒ Object
feed language
13097 13098 13099 |
# File 'lib/kaltura_types.rb', line 13097 def language @language end |
#owner_email ⇒ Object
publisher email
13103 13104 13105 |
# File 'lib/kaltura_types.rb', line 13103 def owner_email @owner_email end |
#owner_name ⇒ Object
author/publisher name
13101 13102 13103 |
# File 'lib/kaltura_types.rb', line 13101 def owner_name @owner_name end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 |
# File 'lib/kaltura_types.rb', line 13120 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['language'] != nil self.language = xml_element.elements['language'].text end if xml_element.elements['feedLandingPage'] != nil self.feed_landing_page = xml_element.elements['feedLandingPage'].text end if xml_element.elements['ownerName'] != nil self.owner_name = xml_element.elements['ownerName'].text end if xml_element.elements['ownerEmail'] != nil self.owner_email = xml_element.elements['ownerEmail'].text end if xml_element.elements['feedImageUrl'] != nil self.feed_image_url = xml_element.elements['feedImageUrl'].text end if xml_element.elements['category'] != nil self.category = xml_element.elements['category'].text end if xml_element.elements['adultContent'] != nil self.adult_content = xml_element.elements['adultContent'].text end if xml_element.elements['feedAuthor'] != nil self. = xml_element.elements['feedAuthor'].text end if xml_element.elements['enforceFeedAuthor'] != nil self. = xml_element.elements['enforceFeedAuthor'].text end if xml_element.elements['enforceOrder'] != nil self.enforce_order = xml_element.elements['enforceOrder'].text end end |