Class: Kaltura::KalturaESearchEntryParams

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

Instance Attribute Summary collapse

Attributes inherited from KalturaESearchParams

#object_id, #object_statuses, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#aggregationsObject

Returns the value of attribute aggregations.



836
837
838
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 836

def aggregations
  @aggregations
end

#search_operatorObject

Returns the value of attribute search_operator.



835
836
837
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 835

def search_operator
  @search_operator
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



839
840
841
842
843
844
845
846
847
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 839

def from_xml(xml_element)
	super
	if xml_element.elements['searchOperator'] != nil
		self.search_operator = KalturaClientBase.object_from_xml(xml_element.elements['searchOperator'], 'KalturaESearchEntryOperator')
	end
	if xml_element.elements['aggregations'] != nil
		self.aggregations = KalturaClientBase.object_from_xml(xml_element.elements['aggregations'], 'KalturaESearchAggregation')
	end
end