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.



831
832
833
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 831

def aggregations
  @aggregations
end

#search_operatorObject

Returns the value of attribute search_operator.



830
831
832
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 830

def search_operator
  @search_operator
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



834
835
836
837
838
839
840
841
842
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 834

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