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.
-
#files ⇒ Object
Returns the value of attribute files.
-
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
-
#report_items ⇒ Object
Returns the value of attribute report_items.
-
#reports_group ⇒ Object
Returns the value of attribute reports_group.
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.
14709 14710 14711 |
# File 'lib/kaltura_types.rb', line 14709 def file_paths @file_paths end |
#files ⇒ Object
Returns the value of attribute files.
14711 14712 14713 |
# File 'lib/kaltura_types.rb', line 14711 def files @files end |
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
14707 14708 14709 |
# File 'lib/kaltura_types.rb', line 14707 def recipient_email @recipient_email end |
#report_items ⇒ Object
Returns the value of attribute report_items.
14708 14709 14710 |
# File 'lib/kaltura_types.rb', line 14708 def report_items @report_items end |
#reports_group ⇒ Object
Returns the value of attribute reports_group.
14710 14711 14712 |
# File 'lib/kaltura_types.rb', line 14710 def reports_group @reports_group end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 |
# File 'lib/kaltura_types.rb', line 14714 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 if xml_element.elements['reportsGroup'] != nil self.reports_group = xml_element.elements['reportsGroup'].text end if xml_element.elements['files'] != nil self.files = KalturaClientBase.object_from_xml(xml_element.elements['files'], 'KalturaReportExportFile') end end |