Class: Kaltura::KalturaSearchOperator

Inherits:
KalturaSearchItem 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

#itemsObject

Returns the value of attribute items.



14330
14331
14332
# File 'lib/kaltura_types.rb', line 14330

def items
  @items
end

#typeObject

Returns the value of attribute type.



14329
14330
14331
# File 'lib/kaltura_types.rb', line 14329

def type
  @type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14336
14337
14338
14339
14340
14341
14342
14343
14344
# File 'lib/kaltura_types.rb', line 14336

def from_xml(xml_element)
	super
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['items'] != nil
		self.items = KalturaClientBase.object_from_xml(xml_element.elements['items'], 'KalturaSearchItem')
	end
end