Class: Kaltura::KalturaSearchMatchAttributeCondition

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

Instance Attribute Summary collapse

Attributes inherited from KalturaAttributeCondition

#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.



18250
18251
18252
# File 'lib/kaltura_types.rb', line 18250

def not
  @not
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18256
18257
18258
18259
18260
18261
# File 'lib/kaltura_types.rb', line 18256

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