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.
933 934 935 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 933 def add_highlight @add_highlight end |
#item_type ⇒ Object
Returns the value of attribute item_type.
931 932 933 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 931 def item_type @item_type end |
#range ⇒ Object
Returns the value of attribute range.
932 933 934 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 932 def range @range end |
#search_term ⇒ Object
Returns the value of attribute search_term.
930 931 932 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 930 def search_term @search_term end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 942 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 |