Class: Kaltura::KalturaEntryVendorTaskCsvJobData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaExportCsvJobData

#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 users that need to be specified in the csv.



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

def filter
  @filter
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1173
1174
1175
1176
1177
1178
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1173

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