Class: Kaltura::KalturaDropFolderFileHandlerConfig

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#handler_typeObject

Returns the value of attribute handler_type.



205
206
207
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 205

def handler_type
  @handler_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



208
209
210
211
212
213
# File 'lib/kaltura_plugins/kaltura_drop_folder_client_plugin.rb', line 208

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