Class: Kaltura::KalturaPodcastDistributionProfile
- Inherits:
-
KalturaDistributionProfile
- Object
- KalturaObjectBase
- KalturaDistributionProfile
- Kaltura::KalturaPodcastDistributionProfile
- Defined in:
- lib/kaltura_plugins/kaltura_podcast_distribution_client_plugin.rb
Instance Attribute Summary collapse
-
#feed_id ⇒ Object
Returns the value of attribute feed_id.
-
#metadata_profile_id ⇒ Object
Returns the value of attribute metadata_profile_id.
-
#xsl ⇒ Object
Returns the value of attribute xsl.
Attributes inherited from KalturaDistributionProfile
#auto_create_flavors, #auto_create_thumb, #created_at, #delete_enabled, #distribute_trigger, #id, #name, #optional_asset_distribution_rules, #optional_flavor_params_ids, #optional_thumb_dimensions, #partner_id, #provider_type, #recommended_dc_for_download, #recommended_dc_for_execute, #recommended_storage_profile_for_download, #report_enabled, #required_asset_distribution_rules, #required_flavor_params_ids, #required_thumb_dimensions, #status, #submit_enabled, #sunrise_default_offset, #sunset_default_offset, #support_image_entry, #update_enabled, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#feed_id ⇒ Object
Returns the value of attribute feed_id.
72 73 74 |
# File 'lib/kaltura_plugins/kaltura_podcast_distribution_client_plugin.rb', line 72 def feed_id @feed_id end |
#metadata_profile_id ⇒ Object
Returns the value of attribute metadata_profile_id.
73 74 75 |
# File 'lib/kaltura_plugins/kaltura_podcast_distribution_client_plugin.rb', line 73 def @metadata_profile_id end |
#xsl ⇒ Object
Returns the value of attribute xsl.
71 72 73 |
# File 'lib/kaltura_plugins/kaltura_podcast_distribution_client_plugin.rb', line 71 def xsl @xsl end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/kaltura_plugins/kaltura_podcast_distribution_client_plugin.rb', line 79 def from_xml(xml_element) super if xml_element.elements['xsl'] != nil self.xsl = xml_element.elements['xsl'].text end if xml_element.elements['feedId'] != nil self.feed_id = xml_element.elements['feedId'].text end if xml_element.elements['metadataProfileId'] != nil self. = xml_element.elements['metadataProfileId'].text end end |