Class: Kaltura::KalturaSearchResultResponse

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#need_media_infoObject

Returns the value of attribute need_media_info.



8774
8775
8776
# File 'lib/kaltura_types.rb', line 8774

def need_media_info
  @need_media_info
end

#objectsObject

Returns the value of attribute objects.



8773
8774
8775
# File 'lib/kaltura_types.rb', line 8773

def objects
  @objects
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8780
8781
8782
8783
8784
8785
8786
8787
8788
# File 'lib/kaltura_types.rb', line 8780

def from_xml(xml_element)
	super
	if xml_element.elements['objects'] != nil
		self.objects = KalturaClientBase.object_from_xml(xml_element.elements['objects'], 'KalturaSearchResult')
	end
	if xml_element.elements['needMediaInfo'] != nil
		self.need_media_info = xml_element.elements['needMediaInfo'].text
	end
end