Class: Kaltura::KalturaGeoDistanceCondition

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

Instance Attribute Summary collapse

Attributes inherited from KalturaMatchCondition

#match_type, #values

Attributes inherited from KalturaCondition

#description, #not, #type

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



16690
16691
16692
# File 'lib/kaltura_types.rb', line 16690

def geo_coder_type
  @geo_coder_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16693
16694
16695
16696
16697
16698
# File 'lib/kaltura_types.rb', line 16693

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