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.



826
827
828
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 826

def aggregations
  @aggregations
end

#search_operatorObject

Returns the value of attribute search_operator.



825
826
827
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 825

def search_operator
  @search_operator
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



829
830
831
832
833
834
835
836
837
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 829

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