Class: Kaltura::KalturaUserAgentRestriction

Inherits:
KalturaBaseRestriction show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#user_agent_regex_listObject

A comma seperated list of user agent regular expressions



16138
16139
16140
# File 'lib/kaltura_types.rb', line 16138

def user_agent_regex_list
  @user_agent_regex_list
end

#user_agent_restriction_typeObject

User agent restriction type (Allow or deny)



16136
16137
16138
# File 'lib/kaltura_types.rb', line 16136

def user_agent_restriction_type
  @user_agent_restriction_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16144
16145
16146
16147
16148
16149
16150
16151
16152
# File 'lib/kaltura_types.rb', line 16144

def from_xml(xml_element)
	super
	if xml_element.elements['userAgentRestrictionType'] != nil
		self.user_agent_restriction_type = xml_element.elements['userAgentRestrictionType'].text
	end
	if xml_element.elements['userAgentRegexList'] != nil
		self.user_agent_regex_list = xml_element.elements['userAgentRegexList'].text
	end
end