Class: Kaltura::KalturaMetroPcsDistributionJobProviderData

Inherits:
KalturaConfigurableDistributionJobProviderData show all
Defined in:
lib/kaltura_plugins/kaltura_metro_pcs_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

#asset_local_pathsObject

Returns the value of attribute asset_local_paths.



53
54
55
# File 'lib/kaltura_plugins/kaltura_metro_pcs_distribution_client_plugin.rb', line 53

def asset_local_paths
  @asset_local_paths
end

#thumb_urlsObject

Returns the value of attribute thumb_urls.



54
55
56
# File 'lib/kaltura_plugins/kaltura_metro_pcs_distribution_client_plugin.rb', line 54

def thumb_urls
  @thumb_urls
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



57
58
59
60
61
62
63
64
65
# File 'lib/kaltura_plugins/kaltura_metro_pcs_distribution_client_plugin.rb', line 57

def from_xml(xml_element)
	super
	if xml_element.elements['assetLocalPaths'] != nil
		self.asset_local_paths = xml_element.elements['assetLocalPaths'].text
	end
	if xml_element.elements['thumbUrls'] != nil
		self.thumb_urls = xml_element.elements['thumbUrls'].text
	end
end