Class: Kaltura::KalturaFieldCompareCondition
- Inherits:
-
KalturaCompareCondition
- Object
- KalturaObjectBase
- KalturaCondition
- KalturaCompareCondition
- Kaltura::KalturaFieldCompareCondition
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#field ⇒ Object
Field to evaluate.
Attributes inherited from KalturaCompareCondition
Attributes inherited from KalturaCondition
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#field ⇒ Object
Field to evaluate
16524 16525 16526 |
# File 'lib/kaltura_types.rb', line 16524 def field @field end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
16527 16528 16529 16530 16531 16532 |
# File 'lib/kaltura_types.rb', line 16527 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 |