class Kaltura::KalturaQuickPlayDistributionJobProviderData
Attributes
thumbnail_file_paths[RW]
video_file_paths[RW]
xml[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaConfigurableDistributionJobProviderData#from_xml
# File lib/kaltura_plugins/kaltura_quick_play_distribution_client_plugin.rb, line 58 def from_xml(xml_element) super if xml_element.elements['xml'] != nil self.xml = xml_element.elements['xml'].text end if xml_element.elements['videoFilePaths'] != nil self.video_file_paths = KalturaClientBase.object_from_xml(xml_element.elements['videoFilePaths'], 'KalturaString') end if xml_element.elements['thumbnailFilePaths'] != nil self.thumbnail_file_paths = KalturaClientBase.object_from_xml(xml_element.elements['thumbnailFilePaths'], 'KalturaString') end end