Class: Kaltura::KalturaEntriesCsvJobData

Inherits:
KalturaMappedObjectsCsvJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaMappedObjectsCsvJobData

#additional_fields, #mapped_fields, #metadata_profile_id, #options

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

#filterObject

The filter should return the list of entries that need to be specified in the csv.



19152
19153
19154
# File 'lib/kaltura_types.rb', line 19152

def filter
  @filter
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



19155
19156
19157
19158
19159
19160
# File 'lib/kaltura_types.rb', line 19155

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