Class: Kaltura::KalturaCoordinatesContextField

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

Overview

Represents the current request country context as calculated based on the IP address

Instance Attribute Summary collapse

Attributes inherited from KalturaStringValue

#value

Attributes inherited from KalturaValue

#description

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#geo_coder_typeObject

The ip geo coder engine to be used



18046
18047
18048
# File 'lib/kaltura_types.rb', line 18046

def geo_coder_type
  @geo_coder_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18049
18050
18051
18052
18053
18054
# File 'lib/kaltura_types.rb', line 18049

def from_xml(xml_element)
	super
	if xml_element.elements['geoCoderType'] != nil
		self.geo_coder_type = xml_element.elements['geoCoderType'].text
	end
end