class Kaltura::KalturaESearchMetadataOrderByItem
Attributes
metadata_profile_id[RW]
xpath[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaESearchOrderByItem#from_xml
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 959 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.metadata_profile_id = xml_element.elements['metadataProfileId'].text end end
metadata_profile_id=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb, line 955 def metadata_profile_id=(val) @metadata_profile_id = val.to_i end