Class: Kaltura::KalturaEntryVendorTaskCsvJobData
- Inherits:
-
KalturaExportCsvJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaExportCsvJobData
- Kaltura::KalturaEntryVendorTaskCsvJobData
- Defined in:
- lib/kaltura_plugins/kaltura_reach_client_plugin.rb
Instance Attribute Summary collapse
-
#filter ⇒ Object
The filter should return the list of users that need to be specified in the csv.
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
Instance Attribute Details
#filter ⇒ Object
The filter should return the list of users that need to be specified in the csv.
1354 1355 1356 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1354 def filter @filter end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
1357 1358 1359 1360 1361 1362 |
# File 'lib/kaltura_plugins/kaltura_reach_client_plugin.rb', line 1357 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 |