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.
9840 9841 9842 |
# File 'lib/kaltura_types.rb', line 9840 def items @items end |
#type ⇒ Object
Returns the value of attribute type.
9839 9840 9841 |
# File 'lib/kaltura_types.rb', line 9839 def type @type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9846 9847 9848 9849 9850 |
# File 'lib/kaltura_types.rb', line 9846 def from_xml(xml_element) super self.type = xml_element.elements['type'].text self.items = KalturaClientBase.object_from_xml(xml_element.elements['items'], 'KalturaSearchItem') end |