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.



8502
8503
8504
# File 'lib/kaltura_types.rb', line 8502

def action
  @action
end

#filterObject

Returns the value of attribute filter.



8504
8505
8506
# File 'lib/kaltura_types.rb', line 8504

def filter
  @filter
end

#object_idsObject

Returns the value of attribute object_ids.



8506
8507
8508
# File 'lib/kaltura_types.rb', line 8506

def object_ids
  @object_ids
end

#orderObject

Returns the value of attribute order.



8505
8506
8507
# File 'lib/kaltura_types.rb', line 8505

def order
  @order
end

#report_titleObject

Returns the value of attribute report_title.



8501
8502
8503
# File 'lib/kaltura_types.rb', line 8501

def report_title
  @report_title
end

#report_typeObject

Returns the value of attribute report_type.



8503
8504
8505
# File 'lib/kaltura_types.rb', line 8503

def report_type
  @report_type
end

#response_optionsObject

Returns the value of attribute response_options.



8507
8508
8509
# File 'lib/kaltura_types.rb', line 8507

def response_options
  @response_options
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8513
8514
8515
8516
8517
8518
8519
8520
8521
8522
8523
8524
8525
8526
8527
8528
8529
8530
8531
8532
8533
8534
8535
8536
# File 'lib/kaltura_types.rb', line 8513

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