class Kaltura::KalturaESearchEntryResponse

Attributes

aggregations[RW]
objects[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 849
def from_xml(xml_element)
        super
        if xml_element.elements['objects'] != nil
                self.objects = KalturaClientBase.object_from_xml(xml_element.elements['objects'], 'KalturaESearchEntryResult')
        end
        if xml_element.elements['aggregations'] != nil
                self.aggregations = KalturaClientBase.object_from_xml(xml_element.elements['aggregations'], 'KalturaESearchAggregationResponseItem')
        end
end