Class: Kaltura::KalturaSyndicationDistributionProfile

Inherits:
KalturaDistributionProfile show all
Defined in:
lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb

Instance Attribute Summary collapse

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, #update_enabled, #updated_at

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_idObject

Returns the value of attribute feed_id.



1590
1591
1592
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1590

def feed_id
  @feed_id
end

#xslObject

Returns the value of attribute xsl.



1589
1590
1591
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1589

def xsl
  @xsl
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1593
1594
1595
1596
1597
1598
1599
1600
1601
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 1593

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