Class: Kaltura::KalturaSearchMatchCondition

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

Instance Attribute Summary collapse

Attributes inherited from KalturaSearchCondition

#field, #value

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#notObject

Returns the value of attribute not.



17457
17458
17459
# File 'lib/kaltura_types.rb', line 17457

def not
  @not
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17463
17464
17465
17466
17467
17468
# File 'lib/kaltura_types.rb', line 17463

def from_xml(xml_element)
	super
	if xml_element.elements['not'] != nil
		self.not = xml_element.elements['not'].text
	end
end