Class: Kaltura::KalturaDropFolderICalBulkUploadFileHandlerConfig

Inherits:
KalturaDropFolderFileHandlerConfig show all
Defined in:
lib/kaltura_plugins/kaltura_schedule_drop_folder_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaDropFolderFileHandlerConfig

#handler_type

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



36
37
38
# File 'lib/kaltura_plugins/kaltura_schedule_drop_folder_client_plugin.rb', line 36

def events_type
  @events_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



42
43
44
45
46
47
# 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