Class: Kaltura::KalturaWebexDropFolderContentProcessorJobData

Inherits:
KalturaDropFolderContentProcessorJobData show all
Defined in:
lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaDropFolderContentProcessorJobData

#content_match_policy, #conversion_profile_id, #drop_folder_file_ids, #drop_folder_id, #parsed_slug, #parsed_user_id

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



154
155
156
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 154

def description
  @description
end

#webex_host_idObject

Returns the value of attribute webex_host_id.



155
156
157
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 155

def webex_host_id
  @webex_host_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



158
159
160
161
162
163
164
165
166
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 158

def from_xml(xml_element)
	super
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['webexHostId'] != nil
		self.webex_host_id = xml_element.elements['webexHostId'].text
	end
end