Class: Kaltura::KalturaSyndicationDistributionProfile
- Inherits:
-
KalturaDistributionProfile
- Object
- KalturaObjectBase
- KalturaDistributionProfile
- Kaltura::KalturaSyndicationDistributionProfile
- Defined in:
- lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb
Instance Attribute Summary collapse
-
#feed_id ⇒ Object
Returns the value of attribute feed_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.
1598 1599 1600 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1598 def feed_id @feed_id end |
#xsl ⇒ Object
Returns the value of attribute xsl.
1597 1598 1599 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1597 def xsl @xsl end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1601 1602 1603 1604 1605 1606 1607 1608 1609 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1601 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 end |