Class: Kaltura::KalturaESearchAbstractEntryItem
- Inherits:
-
KalturaESearchEntryBaseItem
- Object
- KalturaObjectBase
- KalturaESearchBaseItem
- KalturaESearchEntryBaseItem
- Kaltura::KalturaESearchAbstractEntryItem
- Defined in:
- lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb
Direct Known Subclasses
KalturaESearchCategoryEntryItem, KalturaESearchEntryItem, KalturaESearchUnifiedItem
Instance Attribute Summary collapse
-
#add_highlight ⇒ Object
Returns the value of attribute add_highlight.
-
#item_type ⇒ Object
Returns the value of attribute item_type.
-
#range ⇒ Object
Returns the value of attribute range.
-
#search_term ⇒ Object
Returns the value of attribute search_term.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#add_highlight ⇒ Object
Returns the value of attribute add_highlight.
1112 1113 1114 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1112 def add_highlight @add_highlight end |
#item_type ⇒ Object
Returns the value of attribute item_type.
1110 1111 1112 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1110 def item_type @item_type end |
#range ⇒ Object
Returns the value of attribute range.
1111 1112 1113 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1111 def range @range end |
#search_term ⇒ Object
Returns the value of attribute search_term.
1109 1110 1111 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1109 def search_term @search_term end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1121 def from_xml(xml_element) super if xml_element.elements['searchTerm'] != nil self.search_term = xml_element.elements['searchTerm'].text end if xml_element.elements['itemType'] != nil self.item_type = xml_element.elements['itemType'].text end if xml_element.elements['range'] != nil self.range = KalturaClientBase.object_from_xml(xml_element.elements['range'], 'KalturaESearchRange') end if xml_element.elements['addHighlight'] != nil self.add_highlight = xml_element.elements['addHighlight'].text end end |