Class: Kaltura::KalturaESearchCategoryResult

Inherits:
KalturaESearchResult show all
Defined in:
lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaESearchResult

#highlight, #items_data

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#objectObject

Returns the value of attribute object.



419
420
421
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 419

def object
  @object
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



422
423
424
425
426
427
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 422

def from_xml(xml_element)
	super
	if xml_element.elements['object'] != nil
		self.object = KalturaClientBase.object_from_xml(xml_element.elements['object'], 'KalturaCategory')
	end
end