Class: Kaltura::KalturaMediaEsearchExportToCsvJobData

Inherits:
KalturaExportCsvJobData show all
Defined in:
lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaExportCsvJobData

#output_path, #shared_output_path, #user_mail, #user_name

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#optionsObject

options



1169
1170
1171
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1169

def options
  @options
end

#search_paramsObject

Esearch parameters for the entry search



1167
1168
1169
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1167

def search_params
  @search_params
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1172
1173
1174
1175
1176
1177
1178
1179
1180
# File 'lib/kaltura_plugins/kaltura_elastic_search_client_plugin.rb', line 1172

def from_xml(xml_element)
	super
	if xml_element.elements['searchParams'] != nil
		self.search_params = KalturaClientBase.object_from_xml(xml_element.elements['searchParams'], 'KalturaESearchEntryParams')
	end
	if xml_element.elements['options'] != nil
		self.options = KalturaClientBase.object_from_xml(xml_element.elements['options'], 'KalturaExportToCsvOptions')
	end
end