Class: Kaltura::KalturaUrlTokenizerChinaCache

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

Instance Attribute Summary collapse

Attributes inherited from KalturaUrlTokenizer

#key, #limit_ip_address, #window

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#algorithm_idObject

Returns the value of attribute algorithm_id.



15137
15138
15139
# File 'lib/kaltura_types.rb', line 15137

def algorithm_id
  @algorithm_id
end

#key_idObject

Returns the value of attribute key_id.



15138
15139
15140
# File 'lib/kaltura_types.rb', line 15138

def key_id
  @key_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15147
15148
15149
15150
15151
15152
15153
15154
15155
# File 'lib/kaltura_types.rb', line 15147

def from_xml(xml_element)
	super
	if xml_element.elements['algorithmId'] != nil
		self.algorithm_id = xml_element.elements['algorithmId'].text
	end
	if xml_element.elements['keyId'] != nil
		self.key_id = xml_element.elements['keyId'].text
	end
end