Class: Kaltura::KalturaESearchResponse
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaESearchResponse
- Defined in:
- lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb
Direct Known Subclasses
KalturaESearchCategoryResponse, KalturaESearchEntryResponse, KalturaESearchGroupResponse, KalturaESearchUserResponse
Instance Attribute Summary collapse
-
#total_count ⇒ Object
Returns the value of attribute total_count.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#total_count ⇒ Object
Returns the value of attribute total_count.
566 567 568 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 566 def total_count @total_count end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
572 573 574 575 576 577 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 572 def from_xml(xml_element) super if xml_element.elements['totalCount'] != nil self.total_count = xml_element.elements['totalCount'].text end end |