Class: Kaltura::KalturaESearchResult

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

#highlightObject

Returns the value of attribute highlight.



402
403
404
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 402

def highlight
  @highlight
end

#items_dataObject

Returns the value of attribute items_data.



403
404
405
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 403

def items_data
  @items_data
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



406
407
408
409
410
411
412
413
414
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 406

def from_xml(xml_element)
	super
	if xml_element.elements['highlight'] != nil
		self.highlight = KalturaClientBase.object_from_xml(xml_element.elements['highlight'], 'KalturaESearchHighlight')
	end
	if xml_element.elements['itemsData'] != nil
		self.items_data = KalturaClientBase.object_from_xml(xml_element.elements['itemsData'], 'KalturaESearchItemDataResult')
	end
end