class Kaltura::KalturaDropFolderICalBulkUploadFileHandlerConfig
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_drop_folder_client_plugin.rb, line 38 def events_type=(val) @events_type = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaDropFolderFileHandlerConfig#from_xml
# File lib/kaltura_plugins/kaltura_schedule_drop_folder_client_plugin.rb, line 42 def from_xml(xml_element) super if xml_element.elements['eventsType'] != nil self.events_type = xml_element.elements['eventsType'].text end end