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.
14920 14921 14922 |
# File 'lib/kaltura_types.rb', line 14920 def base_url @base_url end |
#file_paths ⇒ Object
Returns the value of attribute file_paths.
14917 14918 14919 |
# File 'lib/kaltura_types.rb', line 14917 def file_paths @file_paths end |
#files ⇒ Object
Returns the value of attribute files.
14919 14920 14921 |
# File 'lib/kaltura_types.rb', line 14919 def files @files end |
#recipient_email ⇒ Object
Returns the value of attribute recipient_email.
14915 14916 14917 |
# File 'lib/kaltura_types.rb', line 14915 def recipient_email @recipient_email end |
#report_items ⇒ Object
Returns the value of attribute report_items.
14916 14917 14918 |
# File 'lib/kaltura_types.rb', line 14916 def report_items @report_items end |
#reports_group ⇒ Object
Returns the value of attribute reports_group.
14918 14919 14920 |
# File 'lib/kaltura_types.rb', line 14918 def reports_group @reports_group end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 |
# File 'lib/kaltura_types.rb', line 14923 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 |