Class: Kaltura::KalturaReportExportItem

Inherits:
KalturaObjectBase 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

#actionObject

Returns the value of attribute action.



8896
8897
8898
# File 'lib/kaltura_types.rb', line 8896

def action
  @action
end

#filterObject

Returns the value of attribute filter.



8898
8899
8900
# File 'lib/kaltura_types.rb', line 8898

def filter
  @filter
end

#object_idsObject

Returns the value of attribute object_ids.



8900
8901
8902
# File 'lib/kaltura_types.rb', line 8900

def object_ids
  @object_ids
end

#orderObject

Returns the value of attribute order.



8899
8900
8901
# File 'lib/kaltura_types.rb', line 8899

def order
  @order
end

#report_titleObject

Returns the value of attribute report_title.



8895
8896
8897
# File 'lib/kaltura_types.rb', line 8895

def report_title
  @report_title
end

#report_typeObject

Returns the value of attribute report_type.



8897
8898
8899
# File 'lib/kaltura_types.rb', line 8897

def report_type
  @report_type
end

#response_optionsObject

Returns the value of attribute response_options.



8901
8902
8903
# File 'lib/kaltura_types.rb', line 8901

def response_options
  @response_options
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8907
8908
8909
8910
8911
8912
8913
8914
8915
8916
8917
8918
8919
8920
8921
8922
8923
8924
8925
8926
8927
8928
8929
8930
# File 'lib/kaltura_types.rb', line 8907

def from_xml(xml_element)
  super
  if xml_element.elements['reportTitle'] != nil
    self.report_title = xml_element.elements['reportTitle'].text
  end
  if xml_element.elements['action'] != nil
    self.action = xml_element.elements['action'].text
  end
  if xml_element.elements['reportType'] != nil
    self.report_type = xml_element.elements['reportType'].text
  end
  if xml_element.elements['filter'] != nil
    self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaReportInputFilter')
  end
  if xml_element.elements['order'] != nil
    self.order = xml_element.elements['order'].text
  end
  if xml_element.elements['objectIds'] != nil
    self.object_ids = xml_element.elements['objectIds'].text
  end
  if xml_element.elements['responseOptions'] != nil
    self.response_options = KalturaClientBase.object_from_xml(xml_element.elements['responseOptions'], 'KalturaReportResponseOptions')
  end
end