Class: Kaltura::KalturaReportExportJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaReportExportJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#base_url ⇒ Object
Returns the value of attribute base_url.
-
#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
#base_url ⇒ Object
Returns the value of attribute base_url.
14846 14847 14848 |
# File 'lib/kaltura_types.rb', line 14846 def base_url @base_url end |
#file_paths ⇒ Object
Returns the value of attribute file_paths.
14843 14844 14845 |
# File 'lib/kaltura_types.rb', line 14843 def file_paths @file_paths end |
#files ⇒ Object
Returns the value of attribute files.
14845 14846 14847 |
# File 'lib/kaltura_types.rb', line 14845 def files @files end |
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
14841 14842 14843 |
# File 'lib/kaltura_types.rb', line 14841 def recipient_email @recipient_email end |
#report_items ⇒ Object
Returns the value of attribute report_items.
14842 14843 14844 |
# File 'lib/kaltura_types.rb', line 14842 def report_items @report_items end |
#reports_group ⇒ Object
Returns the value of attribute reports_group.
14844 14845 14846 |
# File 'lib/kaltura_types.rb', line 14844 def reports_group @reports_group end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 |
# File 'lib/kaltura_types.rb', line 14849 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 if xml_element.elements['baseUrl'] != nil self.base_url = xml_element.elements['baseUrl'].text end end |