Class: Kaltura::KalturaReportExportJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.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

#file_pathsObject

Returns the value of attribute file_paths.



14152
14153
14154
# File 'lib/kaltura_types.rb', line 14152

def file_paths
  @file_paths
end

#recipient_emailObject

Returns the value of attribute recipient_email.



14150
14151
14152
# File 'lib/kaltura_types.rb', line 14150

def recipient_email
  @recipient_email
end

#report_itemsObject

Returns the value of attribute report_items.



14151
14152
14153
# File 'lib/kaltura_types.rb', line 14151

def report_items
  @report_items
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14155
14156
14157
14158
14159
14160
14161
14162
14163
14164
14165
14166
# File 'lib/kaltura_types.rb', line 14155

def from_xml(xml_element)
	super
	if xml_element.elements['recipientEmail'] != nil
		self.recipient_email = xml_element.elements['recipientEmail'].text
	end
	if xml_element.elements['reportItems'] != nil
		self.report_items = KalturaClientBase.object_from_xml(xml_element.elements['reportItems'], 'KalturaReportExportItem')
	end
	if xml_element.elements['filePaths'] != nil
		self.file_paths = xml_element.elements['filePaths'].text
	end
end