class Kaltura::KalturaBulkUploadICalJobData
Represents the Bulk upload job data for iCal bulk upload
Attributes
events_type[RW]
The type of the events that ill be created by this upload
Public Instance Methods
events_type=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_schedule_bulk_upload_client_plugin.rb, line 180 def events_type=(val) @events_type = 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 184 def from_xml(xml_element) super if xml_element.elements['eventsType'] != nil self.events_type = xml_element.elements['eventsType'].text end end