class Kaltura::KalturaDailymotionDistributionProfile
Attributes
geo_blocking_mapping[RW]
password[RW]
user[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaConfigurableDistributionProfile#from_xml
# File lib/kaltura_plugins/kaltura_dailymotion_distribution_client_plugin.rb, line 147 def from_xml(xml_element) super if xml_element.elements['user'] != nil self.user = xml_element.elements['user'].text end if xml_element.elements['password'] != nil self.password = xml_element.elements['password'].text end if xml_element.elements['geoBlockingMapping'] != nil self.geo_blocking_mapping = xml_element.elements['geoBlockingMapping'].text end end
geo_blocking_mapping=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_dailymotion_distribution_client_plugin.rb, line 143 def geo_blocking_mapping=(val) @geo_blocking_mapping = val.to_i end