Class: Kaltura::KalturaReportTable

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

#dataObject

Returns the value of attribute data.



8448
8449
8450
# File 'lib/kaltura_types.rb', line 8448

def data
  @data
end

#headerObject

Returns the value of attribute header.



8447
8448
8449
# File 'lib/kaltura_types.rb', line 8447

def header
  @header
end

#total_countObject

Returns the value of attribute total_count.



8449
8450
8451
# File 'lib/kaltura_types.rb', line 8449

def total_count
  @total_count
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8455
8456
8457
8458
8459
8460
8461
8462
8463
8464
8465
8466
# File 'lib/kaltura_types.rb', line 8455

def from_xml(xml_element)
	super
	if xml_element.elements['header'] != nil
		self.header = xml_element.elements['header'].text
	end
	if xml_element.elements['data'] != nil
		self.data = xml_element.elements['data'].text
	end
	if xml_element.elements['totalCount'] != nil
		self.total_count = xml_element.elements['totalCount'].text
	end
end