Class: Kaltura::KalturaBulkServiceFilterDataBase

Inherits:
KalturaBulkServiceData show all
Defined in:
lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb

Overview

Represents the Bulk service input for filter bulk upload

Direct Known Subclasses

KalturaBulkServiceFilterData

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#filterObject

Filter for extracting the objects list to upload



37
38
39
# File 'lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb', line 37

def filter
  @filter
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



40
41
42
43
44
45
# File 'lib/kaltura_plugins/kaltura_bulk_upload_filter_client_plugin.rb', line 40

def from_xml(xml_element)
	super
	if xml_element.elements['filter'] != nil
		self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaFilter')
	end
end