Class: Kaltura::KalturaESearchEntryMetadataItem
- Inherits:
-
KalturaESearchEntryAbstractNestedItem
- Object
- KalturaObjectBase
- KalturaESearchBaseItem
- KalturaESearchEntryBaseItem
- KalturaESearchEntryBaseNestedObject
- KalturaESearchEntryNestedBaseItem
- KalturaESearchEntryAbstractNestedItem
- Kaltura::KalturaESearchEntryMetadataItem
- 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 KalturaESearchEntryAbstractNestedItem
#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.
1428 1429 1430 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1428 def end |
#metadata_profile_id ⇒ Object
Returns the value of attribute metadata_profile_id.
1427 1428 1429 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1427 def end |
#xpath ⇒ Object
Returns the value of attribute xpath.
1426 1427 1428 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1426 def xpath @xpath end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 |
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1437 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 |