Class: Kaltura::KalturaUrlTokenizerVnpt

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

#should_include_client_ipObject

Returns the value of attribute should_include_client_ip.



15283
15284
15285
# File 'lib/kaltura_types.rb', line 15283

def should_include_client_ip
  @should_include_client_ip
end

#tokenization_formatObject

Returns the value of attribute tokenization_format.



15282
15283
15284
# File 'lib/kaltura_types.rb', line 15282

def tokenization_format
  @tokenization_format
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15292
15293
15294
15295
15296
15297
15298
15299
15300
# File 'lib/kaltura_types.rb', line 15292

def from_xml(xml_element)
	super
	if xml_element.elements['tokenizationFormat'] != nil
		self.tokenization_format = xml_element.elements['tokenizationFormat'].text
	end
	if xml_element.elements['shouldIncludeClientIp'] != nil
		self.should_include_client_ip = xml_element.elements['shouldIncludeClientIp'].text
	end
end