Class: Kaltura::KalturaESearchAggregation
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaESearchAggregation
- Defined in:
- lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb
Instance Attribute Summary collapse
-
#aggregations ⇒ Object
Returns the value of attribute aggregations.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#aggregations ⇒ Object
Returns the value of attribute aggregations.
286 287 288 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 286 def aggregations @aggregations end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
289 290 291 292 293 294 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 289 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 |