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



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

def options
  @options
end

#search_paramsObject

Esearch parameters for the entry search



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

def search_params
  @search_params
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



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

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