Class: Kaltura::KalturaLiveReportExportResponse

Inherits:
KalturaObjectBase 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

#reference_job_idObject

Returns the value of attribute reference_job_id.



6533
6534
6535
# File 'lib/kaltura_types.rb', line 6533

def reference_job_id
  @reference_job_id
end

#report_emailObject

Returns the value of attribute report_email.



6534
6535
6536
# File 'lib/kaltura_types.rb', line 6534

def report_email
  @report_email
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6540
6541
6542
6543
6544
6545
6546
6547
6548
# File 'lib/kaltura_types.rb', line 6540

def from_xml(xml_element)
	super
	if xml_element.elements['referenceJobId'] != nil
		self.reference_job_id = xml_element.elements['referenceJobId'].text
	end
	if xml_element.elements['reportEmail'] != nil
		self.report_email = xml_element.elements['reportEmail'].text
	end
end