Class: Kaltura::KalturaWebexDropFolderFile

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDropFolderFile

#batch_job_id, #created_at, #deleted_drop_folder_file_id, #drop_folder_id, #entry_id, #error_code, #error_description, #file_name, #file_size, #file_size_last_set_at, #id, #import_ended_at, #import_started_at, #last_modification_time, #lead_drop_folder_file_id, #parsed_flavor, #parsed_slug, #parsed_user_id, #partner_id, #status, #type, #updated_at, #upload_end_detected_at, #upload_start_detected_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#conf_idObject

Returns the value of attribute conf_id.



125
126
127
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 125

def conf_id
  @conf_id
end

#content_urlObject

Returns the value of attribute content_url.



126
127
128
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 126

def content_url
  @content_url
end

#descriptionObject

Returns the value of attribute description.



124
125
126
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 124

def description
  @description
end

#recording_idObject

Returns the value of attribute recording_id.



122
123
124
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 122

def recording_id
  @recording_id
end

#webex_host_idObject

Returns the value of attribute webex_host_id.



123
124
125
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 123

def webex_host_id
  @webex_host_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
# File 'lib/kaltura_plugins/kaltura_webex_drop_folder_client_plugin.rb', line 132

def from_xml(xml_element)
	super
	if xml_element.elements['recordingId'] != nil
		self.recording_id = xml_element.elements['recordingId'].text
	end
	if xml_element.elements['webexHostId'] != nil
		self.webex_host_id = xml_element.elements['webexHostId'].text
	end
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['confId'] != nil
		self.conf_id = xml_element.elements['confId'].text
	end
	if xml_element.elements['contentUrl'] != nil
		self.content_url = xml_element.elements['contentUrl'].text
	end
end