Class: Kaltura::KalturaFieldMatchCondition

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

Instance Attribute Summary collapse

Attributes inherited from KalturaMatchCondition

#match_type, #values

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



16548
16549
16550
# File 'lib/kaltura_types.rb', line 16548

def field
  @field
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16551
16552
16553
16554
16555
16556
# File 'lib/kaltura_types.rb', line 16551

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