class Kaltura::KalturaSyndicationDistributionProfile
Attributes
feed_id[RW]
xsl[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaDistributionProfile#from_xml
# File lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb, line 1594 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