class Kaltura::KalturaESearchResponse
Attributes
total_count[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 565 def from_xml(xml_element) super if xml_element.elements['totalCount'] != nil self.total_count = xml_element.elements['totalCount'].text end end
total_count=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 561 def total_count=(val) @total_count = val.to_i end