Class: Kaltura::KalturaReportExportJobData

Inherits:
KalturaJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#file_pathsObject

Returns the value of attribute file_paths.



14642
14643
14644
# File 'lib/kaltura_types.rb', line 14642

def file_paths
  @file_paths
end

#filesObject

Returns the value of attribute files.



14644
14645
14646
# File 'lib/kaltura_types.rb', line 14644

def files
  @files
end

#recipient_emailObject

Returns the value of attribute recipient_email.



14640
14641
14642
# File 'lib/kaltura_types.rb', line 14640

def recipient_email
  @recipient_email
end

#report_itemsObject

Returns the value of attribute report_items.



14641
14642
14643
# File 'lib/kaltura_types.rb', line 14641

def report_items
  @report_items
end

#reports_groupObject

Returns the value of attribute reports_group.



14643
14644
14645
# File 'lib/kaltura_types.rb', line 14643

def reports_group
  @reports_group
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14647
14648
14649
14650
14651
14652
14653
14654
14655
14656
14657
14658
14659
14660
14661
14662
14663
14664
# File 'lib/kaltura_types.rb', line 14647

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