Class: Kaltura::KalturaReportExportJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaReportExportJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#file_paths ⇒ Object
Returns the value of attribute file_paths.
-
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
-
#report_items ⇒ Object
Returns the value of attribute report_items.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#file_paths ⇒ Object
Returns the value of attribute file_paths.
14113 14114 14115 |
# File 'lib/kaltura_types.rb', line 14113 def file_paths @file_paths end |
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
14111 14112 14113 |
# File 'lib/kaltura_types.rb', line 14111 def recipient_email @recipient_email end |
#report_items ⇒ Object
Returns the value of attribute report_items.
14112 14113 14114 |
# File 'lib/kaltura_types.rb', line 14112 def report_items @report_items end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 |
# File 'lib/kaltura_types.rb', line 14116 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 |