Class: Kaltura::KalturaFieldCompareCondition

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

Instance Attribute Summary collapse

Attributes inherited from KalturaCompareCondition

#comparison, #value

Attributes inherited from KalturaCondition

#description, #not, #type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#fieldObject

Field to evaluate



16795
16796
16797
# File 'lib/kaltura_types.rb', line 16795

def field
  @field
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16798
16799
16800
16801
16802
16803
# File 'lib/kaltura_types.rb', line 16798

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