Class: Kaltura::KalturaESearchAggregation

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

#aggregationsObject

Returns the value of attribute aggregations.



276
277
278
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 276

def aggregations
  @aggregations
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



279
280
281
282
283
284
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 279

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