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.



8399
8400
8401
# File 'lib/kaltura_types.rb', line 8399

def action
  @action
end

#filterObject

Returns the value of attribute filter.



8401
8402
8403
# File 'lib/kaltura_types.rb', line 8401

def filter
  @filter
end

#object_idsObject

Returns the value of attribute object_ids.



8403
8404
8405
# File 'lib/kaltura_types.rb', line 8403

def object_ids
  @object_ids
end

#orderObject

Returns the value of attribute order.



8402
8403
8404
# File 'lib/kaltura_types.rb', line 8402

def order
  @order
end

#report_titleObject

Returns the value of attribute report_title.



8398
8399
8400
# File 'lib/kaltura_types.rb', line 8398

def report_title
  @report_title
end

#report_typeObject

Returns the value of attribute report_type.



8400
8401
8402
# File 'lib/kaltura_types.rb', line 8400

def report_type
  @report_type
end

#response_optionsObject

Returns the value of attribute response_options.



8404
8405
8406
# File 'lib/kaltura_types.rb', line 8404

def response_options
  @response_options
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8410
8411
8412
8413
8414
8415
8416
8417
8418
8419
8420
8421
8422
8423
8424
8425
8426
8427
8428
8429
8430
8431
8432
8433
# File 'lib/kaltura_types.rb', line 8410

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