Class: Kaltura::KalturaSearchOperator
- Inherits:
-
KalturaSearchItem
- Object
- KalturaObjectBase
- KalturaSearchItem
- Kaltura::KalturaSearchOperator
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#items ⇒ Object
Returns the value of attribute items.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#items ⇒ Object
Returns the value of attribute items.
15107 15108 15109 |
# File 'lib/kaltura_types.rb', line 15107 def items @items end |
#type ⇒ Object
Returns the value of attribute type.
15106 15107 15108 |
# File 'lib/kaltura_types.rb', line 15106 def type @type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15113 15114 15115 15116 15117 15118 15119 15120 15121 |
# File 'lib/kaltura_types.rb', line 15113 def from_xml(xml_element) super if xml_element.elements['type'] != nil self.type = xml_element.elements['type'].text end if xml_element.elements['items'] != nil self.items = KalturaClientBase.object_from_xml(xml_element.elements['items'], 'KalturaSearchItem') end end |