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



10489
10490
10491
# File 'lib/kaltura_types.rb', line 10489

def user_agent_regex_list
  @user_agent_regex_list
end

#user_agent_restriction_typeObject

User agent restriction type (Allow or deny)



10486
10487
10488
# File 'lib/kaltura_types.rb', line 10486

def user_agent_restriction_type
  @user_agent_restriction_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10495
10496
10497
10498
10499
# File 'lib/kaltura_types.rb', line 10495

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