Class: Kaltura::KalturaAnonymousIPContextField
- Inherits:
-
KalturaStringField
- Object
- KalturaObjectBase
- KalturaValue
- KalturaStringValue
- KalturaStringField
- Kaltura::KalturaAnonymousIPContextField
- Defined in:
- lib/kaltura_types.rb
Overview
Represents the current request country context as calculated based on the IP address
Instance Attribute Summary collapse
-
#geo_coder_type ⇒ Object
The ip geo coder engine to be used.
Attributes inherited from KalturaStringValue
Attributes inherited from KalturaValue
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#geo_coder_type ⇒ Object
The ip geo coder engine to be used
18877 18878 18879 |
# File 'lib/kaltura_types.rb', line 18877 def geo_coder_type @geo_coder_type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
18880 18881 18882 18883 18884 18885 |
# File 'lib/kaltura_types.rb', line 18880 def from_xml(xml_element) super if xml_element.elements['geoCoderType'] != nil self.geo_coder_type = xml_element.elements['geoCoderType'].text end end |