Class: Kaltura::KalturaBulkUploadICalJobData

Inherits:
KalturaBulkUploadScheduleEventJobData show all
Defined in:
lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb

Overview

Represents the Bulk upload job data for iCal bulk upload

Instance Attribute Summary collapse

Attributes inherited from KalturaBulkUploadJobData

#bulk_upload_object_type, #conversion_profile_id, #email_recipients, #file_name, #file_path, #num_of_entries, #num_of_error_objects, #num_of_objects, #object_data, #privileges, #results_file_local_path, #results_file_url, #type, #uploaded_by, #user_id

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#events_typeObject

The type of the events that ill be created by this upload



178
179
180
# File 'lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb', line 178

def events_type
  @events_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



184
185
186
187
188
189
# File 'lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb', line 184

def from_xml(xml_element)
	super
	if xml_element.elements['eventsType'] != nil
		self.events_type = xml_element.elements['eventsType'].text
	end
end