Class: Kaltura::KalturaESearchEntryParams
- Inherits:
-
KalturaESearchParams
- Object
- KalturaObjectBase
- KalturaESearchParams
- Kaltura::KalturaESearchEntryParams
- Defined in:
- lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb
Instance Attribute Summary collapse
-
#aggregations ⇒ Object
Returns the value of attribute aggregations.
-
#search_operator ⇒ Object
Returns the value of attribute search_operator.
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
Instance Attribute Details
#aggregations ⇒ Object
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_operator ⇒ Object
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 |