class Kaltura::KalturaBulkUploadScheduleEventCsvJobData
Represents the Bulk upload job data for CSV bulk upload
Attributes
columns[RW]
Array containing CSV headers
csv_version[RW]
The version of the csv file
Public Instance Methods
csv_version=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 200 def csv_version=(val) @csv_version = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaBulkUploadScheduleEventJobData#from_xml
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 204 def from_xml(xml_element) super if xml_element.elements['csvVersion'] != nil self.csv_version = xml_element.elements['csvVersion'].text end if xml_element.elements['columns'] != nil self.columns = KalturaClientBase.object_from_xml(xml_element.elements['columns'], 'KalturaString') end end