Class: Kaltura::KalturaLiveReportExportResponse
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaLiveReportExportResponse
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#reference_job_id ⇒ Object
Returns the value of attribute reference_job_id.
-
#report_email ⇒ Object
Returns the value of attribute report_email.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#reference_job_id ⇒ Object
Returns the value of attribute reference_job_id.
6859 6860 6861 |
# File 'lib/kaltura_types.rb', line 6859 def reference_job_id @reference_job_id end |
#report_email ⇒ Object
Returns the value of attribute report_email.
6860 6861 6862 |
# File 'lib/kaltura_types.rb', line 6860 def report_email @report_email end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6866 6867 6868 6869 6870 6871 6872 6873 6874 |
# File 'lib/kaltura_types.rb', line 6866 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 |