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.



8861
8862
8863
# File 'lib/kaltura_types.rb', line 8861

def action
  @action
end

#filterObject

Returns the value of attribute filter.



8863
8864
8865
# File 'lib/kaltura_types.rb', line 8863

def filter
  @filter
end

#object_idsObject

Returns the value of attribute object_ids.



8865
8866
8867
# File 'lib/kaltura_types.rb', line 8865

def object_ids
  @object_ids
end

#orderObject

Returns the value of attribute order.



8864
8865
8866
# File 'lib/kaltura_types.rb', line 8864

def order
  @order
end

#report_titleObject

Returns the value of attribute report_title.



8860
8861
8862
# File 'lib/kaltura_types.rb', line 8860

def report_title
  @report_title
end

#report_typeObject

Returns the value of attribute report_type.



8862
8863
8864
# File 'lib/kaltura_types.rb', line 8862

def report_type
  @report_type
end

#response_optionsObject

Returns the value of attribute response_options.



8866
8867
8868
# File 'lib/kaltura_types.rb', line 8866

def response_options
  @response_options
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8872
8873
8874
8875
8876
8877
8878
8879
8880
8881
8882
8883
8884
8885
8886
8887
8888
8889
8890
8891
8892
8893
8894
8895
# File 'lib/kaltura_types.rb', line 8872

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