Class: Kaltura::KalturaESearchHighlight

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#field_nameObject

Returns the value of attribute field_name.



255
256
257
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 255

def field_name
  @field_name
end

#hitsObject

Returns the value of attribute hits.



256
257
258
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 256

def hits
  @hits
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



259
260
261
262
263
264
265
266
267
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 259

def from_xml(xml_element)
  super
  if xml_element.elements['fieldName'] != nil
    self.field_name = xml_element.elements['fieldName'].text
  end
  if xml_element.elements['hits'] != nil
    self.hits = KalturaClientBase.object_from_xml(xml_element.elements['hits'], 'KalturaString')
  end
end