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.



14565
14566
14567
# File 'lib/kaltura_types.rb', line 14565

def file_paths
  @file_paths
end

#recipient_emailObject

Returns the value of attribute recipient_email.



14563
14564
14565
# File 'lib/kaltura_types.rb', line 14563

def recipient_email
  @recipient_email
end

#report_itemsObject

Returns the value of attribute report_items.



14564
14565
14566
# File 'lib/kaltura_types.rb', line 14564

def report_items
  @report_items
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14568
14569
14570
14571
14572
14573
14574
14575
14576
14577
14578
14579
# File 'lib/kaltura_types.rb', line 14568

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