class Kaltura::KalturaDailymotionDistributionJobProviderData
Attributes
access_control_geo_blocking_country_list[RW]
access_control_geo_blocking_operation[RW]
captions_info[RW]
video_asset_file_path[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaConfigurableDistributionJobProviderData#from_xml
# File lib/kaltura_plugins/kaltura_dailymotion_distribution_client_plugin.rb, line 120 def from_xml(xml_element) super if xml_element.elements['videoAssetFilePath'] != nil self.video_asset_file_path = xml_element.elements['videoAssetFilePath'].text end if xml_element.elements['accessControlGeoBlockingOperation'] != nil self.access_control_geo_blocking_operation = xml_element.elements['accessControlGeoBlockingOperation'].text end if xml_element.elements['accessControlGeoBlockingCountryList'] != nil self.access_control_geo_blocking_country_list = xml_element.elements['accessControlGeoBlockingCountryList'].text end if xml_element.elements['captionsInfo'] != nil self.captions_info = KalturaClientBase.object_from_xml(xml_element.elements['captionsInfo'], 'KalturaDailymotionDistributionCaptionInfo') end end