Class: Kaltura::KalturaBulkUploadICalJobData
- Inherits:
-
KalturaBulkUploadScheduleEventJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaBulkUploadJobData
- KalturaBulkUploadScheduleEventJobData
- Kaltura::KalturaBulkUploadICalJobData
- 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
-
#events_type ⇒ Object
The type of the events that ill be created by this upload.
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
Instance Attribute Details
#events_type ⇒ Object
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 |