Class: Kaltura::KalturaESearchCategoryMetadataItem
- Inherits:
-
KalturaESearchAbstractCategoryItem
- Object
- KalturaObjectBase
- KalturaESearchBaseItem
- KalturaESearchCategoryBaseItem
- KalturaESearchAbstractCategoryItem
- Kaltura::KalturaESearchCategoryMetadataItem
- Defined in:
- lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb
Instance Attribute Summary collapse
-
#metadata_field_id ⇒ Object
Returns the value of attribute metadata_field_id.
-
#metadata_profile_id ⇒ Object
Returns the value of attribute metadata_profile_id.
-
#xpath ⇒ Object
Returns the value of attribute xpath.
Attributes inherited from KalturaESearchAbstractCategoryItem
#add_highlight, #item_type, #range, #search_term
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#metadata_field_id ⇒ Object
Returns the value of attribute metadata_field_id.
1225 1226 1227 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1225 def @metadata_field_id end |
#metadata_profile_id ⇒ Object
Returns the value of attribute metadata_profile_id.
1224 1225 1226 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1224 def @metadata_profile_id end |
#xpath ⇒ Object
Returns the value of attribute xpath.
1223 1224 1225 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1223 def xpath @xpath end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1234 def from_xml(xml_element) super if xml_element.elements['xpath'] != nil self.xpath = xml_element.elements['xpath'].text end if xml_element.elements['metadataProfileId'] != nil self. = xml_element.elements['metadataProfileId'].text end if xml_element.elements['metadataFieldId'] != nil self. = xml_element.elements['metadataFieldId'].text end end |