Class: Kaltura::KalturaYahooDistributionJobProviderData

Inherits:
KalturaConfigurableDistributionJobProviderData show all
Defined in:
lib/kaltura_plugins/kaltura_yahoo_distribution_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaConfigurableDistributionJobProviderData

#field_values

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#large_thumb_pathObject

Returns the value of attribute large_thumb_path.



59
60
61
# File 'lib/kaltura_plugins/kaltura_yahoo_distribution_client_plugin.rb', line 59

def large_thumb_path
  @large_thumb_path
end

#small_thumb_pathObject

Returns the value of attribute small_thumb_path.



58
59
60
# File 'lib/kaltura_plugins/kaltura_yahoo_distribution_client_plugin.rb', line 58

def small_thumb_path
  @small_thumb_path
end

#video_asset_file_pathObject

Returns the value of attribute video_asset_file_path.



60
61
62
# File 'lib/kaltura_plugins/kaltura_yahoo_distribution_client_plugin.rb', line 60

def video_asset_file_path
  @video_asset_file_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/kaltura_plugins/kaltura_yahoo_distribution_client_plugin.rb', line 63

def from_xml(xml_element)
	super
	if xml_element.elements['smallThumbPath'] != nil
		self.small_thumb_path = xml_element.elements['smallThumbPath'].text
	end
	if xml_element.elements['largeThumbPath'] != nil
		self.large_thumb_path = xml_element.elements['largeThumbPath'].text
	end
	if xml_element.elements['videoAssetFilePath'] != nil
		self.video_asset_file_path = xml_element.elements['videoAssetFilePath'].text
	end
end